[−][src]Struct typed_headers::ContentCoding
A content coding, used in the Accept-Encoding
and Content-Encoding
headers.
Methods
impl ContentCoding
[src]
pub const BROTLI: ContentCoding
[src]
The Brotli coding, as specified in RFC7932.
pub const GZIP: ContentCoding
[src]
The Gzip coding, as specified in RFC7230.
pub const DEFLATE: ContentCoding
[src]
The Deflate coding, as specified in RFC7230.
pub const COMPRESS: ContentCoding
[src]
The Compress coding, as specified in RFC7230.
pub const IDENTITY: ContentCoding
[src]
The identity coding.
pub const STAR: ContentCoding
[src]
A wildcard, used in the Accept-Encoding
header to indicate that all codings are acceptable.
pub fn new(s: &str) -> Result<ContentCoding, Error>
[src]
Constructs a new instance of this value from a string.
An error is returned if the string is not a valid token.
pub fn as_str(&self) -> &str
[src]
Returns the string representation of this token.
Trait Implementations
impl PartialEq<ContentCoding> for ContentCoding
[src]
fn eq(&self, other: &ContentCoding) -> bool
[src]
fn ne(&self, other: &ContentCoding) -> bool
[src]
impl Eq for ContentCoding
[src]
impl Clone for ContentCoding
[src]
fn clone(&self) -> ContentCoding
[src]
default fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl From<ContentCoding> for ContentEncoding
[src]
fn from(value: ContentCoding) -> ContentEncoding
[src]
impl Display for ContentCoding
[src]
impl Debug for ContentCoding
[src]
impl FromStr for ContentCoding
[src]
Auto Trait Implementations
impl Send for ContentCoding
impl Sync for ContentCoding
Blanket Implementations
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,