Struct Accept
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 const Binary: Accept
pub const Binary: Accept
An Accept
header with the single media type for
binary data: application/octet-stream
pub const Bytes: Accept
pub const Bytes: Accept
An Accept
header with the single media type for
binary data: application/octet-stream
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: text/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 OPF: Accept
pub const OPF: Accept
An Accept
header with the single media type for
OPF: application/oebps-package+xml
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 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
pub const MOV: Accept
pub const MOV: Accept
An Accept
header with the single media type for
quicktime video: video/quicktime
pub const CBZ: Accept
pub const CBZ: Accept
An Accept
header with the single media type for
Comic ZIP archive: application/vnd.comicbook+zip
pub const CBR: Accept
pub const CBR: Accept
An Accept
header with the single media type for
Comic RAR compressed archive: application/vnd.comicbook-rar
pub const RAR: Accept
pub const RAR: Accept
An Accept
header with the single media type for
RAR compressed archive: application/vnd.rar
pub const EventStream: Accept
pub const EventStream: Accept
An Accept
header with the single media type for
SSE stream: text/event-stream
pub const Markdown: Accept
pub const Markdown: Accept
An Accept
header with the single media type for
markdown text: text/markdown
pub const EXE: Accept
pub const EXE: Accept
An Accept
header with the single media type for
executable: application/vnd.microsoft.portable-executable
pub fn new<T, M>(items: T) -> Accept
pub fn new<T, M>(items: T) -> Accept
Constructs a new Accept
header from one or more media types.
The items
parameter may be of type QMediaType
, [QMediaType]
,
&[QMediaType]
or Vec<QMediaType>
. To prevent additional allocations,
prefer to provide inputs of type QMediaType
, [QMediaType]
, or
Vec<QMediaType>
.
§Example
use rocket::http::{QMediaType, MediaType, Accept};
// Construct an `Accept` via a `Vec<MediaType>`.
let json_then_html = vec![MediaType::JSON, MediaType::HTML];
let accept = Accept::new(json_then_html);
assert_eq!(accept.preferred().media_type(), &MediaType::JSON);
// Construct an `Accept` via an `[MediaType]`.
let accept = Accept::new([MediaType::JSON, MediaType::HTML]);
assert_eq!(accept.preferred().media_type(), &MediaType::JSON);
// Construct an `Accept` via a single `QMediaType`.
let accept = Accept::new(QMediaType(MediaType::JSON, Some(0.4)));
assert_eq!(accept.preferred().media_type(), &MediaType::JSON);
pub fn add<M>(&mut self, media_type: M)where
M: Into<QMediaType>,
pub fn add<M>(&mut self, media_type: M)where
M: Into<QMediaType>,
Adds media_type
to self
.
§Example
use rocket::http::{QMediaType, MediaType, Accept};
let mut accept = Accept::new(QMediaType(MediaType::JSON, Some(0.1)));
assert_eq!(accept.preferred().media_type(), &MediaType::JSON);
assert_eq!(accept.iter().count(), 1);
accept.add(QMediaType(MediaType::HTML, Some(0.7)));
assert_eq!(accept.preferred().media_type(), &MediaType::HTML);
assert_eq!(accept.iter().count(), 2);
accept.add(QMediaType(MediaType::XML, Some(0.6)));
assert_eq!(accept.preferred().media_type(), &MediaType::HTML);
assert_eq!(accept.iter().count(), 3);
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(&self) -> impl Iterator<Item = &QMediaType>
pub fn iter(&self) -> impl Iterator<Item = &QMediaType>
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(&self) -> impl Iterator<Item = &MediaType>
pub fn media_types(&self) -> impl Iterator<Item = &MediaType>
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);
Trait Implementations§
§impl From<Accept> for Header<'static>
Creates a new Header
with name Accept
and the value set to the HTTP
rendering of this Accept
header.
impl From<Accept> for Header<'static>
Creates a new Header
with name Accept
and the value set to the HTTP
rendering of this Accept
header.
§impl<T> From<T> for Acceptwhere
T: IntoIterator<Item = MediaType>,
impl<T> From<T> for Acceptwhere
T: IntoIterator<Item = MediaType>,
Source§impl<'r> FromRequest<'r> for &'r Accept
impl<'r> FromRequest<'r> for &'r Accept
Source§type Error = Infallible
type Error = Infallible
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> AsAny for Twhere
T: Any,
impl<T> AsAny for Twhere
T: Any,
fn as_any_ref(&self) -> &(dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Paint for Twhere
T: ?Sized,
impl<T> Paint for Twhere
T: ?Sized,
Source§fn fg(&self, value: Color) -> Painted<&T>
fn fg(&self, value: Color) -> Painted<&T>
Returns a styled value derived from self
with the foreground set to
value
.
This method should be used rarely. Instead, prefer to use color-specific
builder methods like red()
and
green()
, which have the same functionality but are
pithier.
§Example
Set foreground color to white using fg()
:
use yansi::{Paint, Color};
painted.fg(Color::White);
Set foreground color to white using white()
.
use yansi::Paint;
painted.white();
Source§fn bright_black(&self) -> Painted<&T>
fn bright_black(&self) -> Painted<&T>
Source§fn bright_red(&self) -> Painted<&T>
fn bright_red(&self) -> Painted<&T>
Source§fn bright_green(&self) -> Painted<&T>
fn bright_green(&self) -> Painted<&T>
Source§fn bright_yellow(&self) -> Painted<&T>
fn bright_yellow(&self) -> Painted<&T>
Source§fn bright_blue(&self) -> Painted<&T>
fn bright_blue(&self) -> Painted<&T>
Source§fn bright_magenta(&self) -> Painted<&T>
fn bright_magenta(&self) -> Painted<&T>
Source§fn bright_cyan(&self) -> Painted<&T>
fn bright_cyan(&self) -> Painted<&T>
Source§fn bright_white(&self) -> Painted<&T>
fn bright_white(&self) -> Painted<&T>
Source§fn bg(&self, value: Color) -> Painted<&T>
fn bg(&self, value: Color) -> Painted<&T>
Returns a styled value derived from self
with the background set to
value
.
This method should be used rarely. Instead, prefer to use color-specific
builder methods like on_red()
and
on_green()
, which have the same functionality but
are pithier.
§Example
Set background color to red using fg()
:
use yansi::{Paint, Color};
painted.bg(Color::Red);
Set background color to red using on_red()
.
use yansi::Paint;
painted.on_red();
Source§fn on_primary(&self) -> Painted<&T>
fn on_primary(&self) -> Painted<&T>
Source§fn on_magenta(&self) -> Painted<&T>
fn on_magenta(&self) -> Painted<&T>
Source§fn on_bright_black(&self) -> Painted<&T>
fn on_bright_black(&self) -> Painted<&T>
Source§fn on_bright_red(&self) -> Painted<&T>
fn on_bright_red(&self) -> Painted<&T>
Source§fn on_bright_green(&self) -> Painted<&T>
fn on_bright_green(&self) -> Painted<&T>
Source§fn on_bright_yellow(&self) -> Painted<&T>
fn on_bright_yellow(&self) -> Painted<&T>
Source§fn on_bright_blue(&self) -> Painted<&T>
fn on_bright_blue(&self) -> Painted<&T>
Source§fn on_bright_magenta(&self) -> Painted<&T>
fn on_bright_magenta(&self) -> Painted<&T>
Source§fn on_bright_cyan(&self) -> Painted<&T>
fn on_bright_cyan(&self) -> Painted<&T>
Source§fn on_bright_white(&self) -> Painted<&T>
fn on_bright_white(&self) -> Painted<&T>
Source§fn attr(&self, value: Attribute) -> Painted<&T>
fn attr(&self, value: Attribute) -> Painted<&T>
Enables the styling Attribute
value
.
This method should be used rarely. Instead, prefer to use
attribute-specific builder methods like bold()
and
underline()
, which have the same functionality
but are pithier.
§Example
Make text bold using attr()
:
use yansi::{Paint, Attribute};
painted.attr(Attribute::Bold);
Make text bold using using bold()
.
use yansi::Paint;
painted.bold();
Source§fn rapid_blink(&self) -> Painted<&T>
fn rapid_blink(&self) -> Painted<&T>
Source§fn quirk(&self, value: Quirk) -> Painted<&T>
fn quirk(&self, value: Quirk) -> Painted<&T>
Enables the yansi
Quirk
value
.
This method should be used rarely. Instead, prefer to use quirk-specific
builder methods like mask()
and
wrap()
, which have the same functionality but are
pithier.
§Example
Enable wrapping using .quirk()
:
use yansi::{Paint, Quirk};
painted.quirk(Quirk::Wrap);
Enable wrapping using wrap()
.
use yansi::Paint;
painted.wrap();
Source§fn clear(&self) -> Painted<&T>
👎Deprecated since 1.0.1: renamed to resetting()
due to conflicts with Vec::clear()
.
The clear()
method will be removed in a future release.
fn clear(&self) -> Painted<&T>
resetting()
due to conflicts with Vec::clear()
.
The clear()
method will be removed in a future release.Source§fn whenever(&self, value: Condition) -> Painted<&T>
fn whenever(&self, value: Condition) -> Painted<&T>
Conditionally enable styling based on whether the Condition
value
applies. Replaces any previous condition.
See the crate level docs for more details.
§Example
Enable styling painted
only when both stdout
and stderr
are TTYs:
use yansi::{Paint, Condition};
painted.red().on_yellow().whenever(Condition::STDOUTERR_ARE_TTY);