pub struct Accept(/* private fields */);
Expand description
The HTTP Accept header.
An Accept
header is composed of zero or more media types, each of which
may have an optional quality value (a QMediaType
). The header is sent by
an HTTP client to describe the formats it accepts as well as the order in
which it prefers different formats.
§Usage
The Accept header of an incoming request can be retrieved via the
[Request::accept()
] method. The preferred()
method can be used to
retrieve the client’s preferred media type.
An Accept
type with a single, common media type can be easily constructed
via provided associated constants.
§Example
Construct an Accept
header with a single application/json
media type:
use rocket::http::Accept;
let accept_json = Accept::JSON;
§Header
Accept
implements Into<Header>
. As such, it can be used in any context
where an Into<Header>
is expected:
use rocket::http::Accept;
use rocket::response::Response;
let response = Response::build().header(Accept::JSON).finalize();
Implementations§
§impl Accept
impl Accept
pub fn new<T>(items: T) -> Acceptwhere
T: IntoCollection<QMediaType>,
pub fn new<T>(items: T) -> Acceptwhere
T: IntoCollection<QMediaType>,
Constructs a new Accept
header from one or more media types.
The items
parameter may be of type QMediaType
, &[QMediaType]
, or
Vec<QMediaType>
. To prevent additional allocations, prefer to provide
inputs of type QMediaType
and Vec<QMediaType>
.
§Example
use rocket::http::{QMediaType, MediaType, Accept};
// Construct an `Accept` via a `Vec<QMediaType>`.
let json_then_html = vec![MediaType::JSON.into(), MediaType::HTML.into()];
let accept = Accept::new(json_then_html);
assert_eq!(accept.preferred().media_type(), &MediaType::JSON);
// Construct an `Accept` via an `&[QMediaType]`.
let accept = Accept::new(&[MediaType::JSON.into(), MediaType::HTML.into()]);
assert_eq!(accept.preferred().media_type(), &MediaType::JSON);
// Construct an `Accept` via a `QMediaType`.
let accept = Accept::new(QMediaType(MediaType::JSON, None));
assert_eq!(accept.preferred().media_type(), &MediaType::JSON);
pub fn preferred(&self) -> &QMediaType
pub fn preferred(&self) -> &QMediaType
Retrieve the client’s preferred media type. This method follows RFC
7231 5.3.2. If the list of media types is empty, this method returns a
media type of any with no quality value: (*/*
).
§Example
use rocket::http::{QMediaType, MediaType, Accept};
let media_types = vec![
QMediaType(MediaType::JSON, Some(0.3)),
QMediaType(MediaType::HTML, Some(0.9))
];
let accept = Accept::new(media_types);
assert_eq!(accept.preferred().media_type(), &MediaType::HTML);
pub fn first(&self) -> Option<&QMediaType>
pub fn first(&self) -> Option<&QMediaType>
Retrieve the first media type in self
, if any.
§Example
use rocket::http::{QMediaType, MediaType, Accept};
let accept = Accept::new(QMediaType(MediaType::XML, None));
assert_eq!(accept.first(), Some(&MediaType::XML.into()));
pub fn iter<'a>(&'a self) -> impl Iterator<Item = &'a QMediaType> + 'a
pub fn iter<'a>(&'a self) -> impl Iterator<Item = &'a QMediaType> + 'a
Returns an iterator over all of the (quality) media types in self
.
Media types are returned in the order in which they appear in the
header.
§Example
use rocket::http::{QMediaType, MediaType, Accept};
let qmedia_types = vec![
QMediaType(MediaType::JSON, Some(0.3)),
QMediaType(MediaType::HTML, Some(0.9))
];
let accept = Accept::new(qmedia_types.clone());
let mut iter = accept.iter();
assert_eq!(iter.next(), Some(&qmedia_types[0]));
assert_eq!(iter.next(), Some(&qmedia_types[1]));
assert_eq!(iter.next(), None);
pub fn media_types<'a>(&'a self) -> impl Iterator<Item = &'a MediaType> + 'a
pub fn media_types<'a>(&'a self) -> impl Iterator<Item = &'a MediaType> + 'a
Returns an iterator over all of the (bare) media types in self
. Media
types are returned in the order in which they appear in the header.
§Example
use rocket::http::{QMediaType, MediaType, Accept};
let qmedia_types = vec![
QMediaType(MediaType::JSON, Some(0.3)),
QMediaType(MediaType::HTML, Some(0.9))
];
let accept = Accept::new(qmedia_types.clone());
let mut iter = accept.media_types();
assert_eq!(iter.next(), Some(qmedia_types[0].media_type()));
assert_eq!(iter.next(), Some(qmedia_types[1].media_type()));
assert_eq!(iter.next(), None);
pub const Binary: Accept = _
pub const Binary: Accept = _
An Accept
header with the single media type for
binary data
:
application
/
octet-stream
pub const Plain: Accept = _
pub const Plain: Accept = _
An Accept
header with the single media type for
plain text
:
text
/
plain
pub const MsgPack: Accept = _
pub const MsgPack: Accept = _
An Accept
header with the single media type for
MsgPack
:
application
/
msgpack
pub const Form: Accept = _
pub const Form: Accept = _
An Accept
header with the single media type for
forms
:
application
/
x-www-form-urlencoded
pub const JavaScript: Accept = _
pub const JavaScript: Accept = _
An Accept
header with the single media type for
JavaScript
:
application
/
javascript
pub const FormData: Accept = _
pub const FormData: Accept = _
An Accept
header with the single media type for
multipart form data
:
multipart
/
form-data
pub const TTF: Accept = _
pub const TTF: Accept = _
An Accept
header with the single media type for
TTF
:
application
/
font-sfnt
pub const OTF: Accept = _
pub const OTF: Accept = _
An Accept
header with the single media type for
OTF
:
application
/
font-sfnt
pub const WOFF: Accept = _
pub const WOFF: Accept = _
An Accept
header with the single media type for
WOFF
:
application
/
font-woff
pub const JsonApi: Accept = _
pub const JsonApi: Accept = _
An Accept
header with the single media type for
JSON API
:
application
/
vnd.api+json
pub const Calendar: Accept = _
pub const Calendar: Accept = _
An Accept
header with the single media type for
iCalendar
:
text
/
calendar
pub const TAR: Accept = _
pub const TAR: Accept = _
An Accept
header with the single media type for
tape archive
:
application
/
x-tar
pub const GZIP: Accept = _
pub const GZIP: Accept = _
An Accept
header with the single media type for
gzipped binary
:
application
/
gzip
Trait Implementations§
§impl<T> From<T> for Acceptwhere
T: IntoCollection<MediaType>,
impl<T> From<T> for Acceptwhere
T: IntoCollection<MediaType>,
source§impl<'a, 'r> FromRequest<'a, 'r> for &'a Accept
impl<'a, 'r> FromRequest<'a, 'r> for &'a Accept
§impl Into<Header<'static>> for Accept
impl Into<Header<'static>> for Accept
Creates a new Header
with name Accept
and the value set to the HTTP
rendering of this Accept
header.
impl StructuralPartialEq for Accept
Auto Trait Implementations§
impl Freeze for Accept
impl RefUnwindSafe for Accept
impl Send for Accept
impl Sync for Accept
impl Unpin for Accept
impl UnwindSafe for Accept
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)