#[non_exhaustive]pub enum ContentFormat {
Text,
LinkFormat,
Xml,
OctetStream,
Exi,
Json,
Other(u16),
}Expand description
Content-Format
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Text
text/plain; charset=utf-8
LinkFormat
application/link-format
Xml
application/xml
OctetStream
application/octet-stream
Exi
application/exi
Json
application/json
Other(u16)
Another content format
Implementations§
Trait Implementations§
Source§impl Clone for ContentFormat
impl Clone for ContentFormat
Source§fn clone(&self) -> ContentFormat
fn clone(&self) -> ContentFormat
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ContentFormat
impl Debug for ContentFormat
Source§impl<'a> From<&'a ContentFormat> for u16
impl<'a> From<&'a ContentFormat> for u16
Source§fn from(f: &'a ContentFormat) -> Self
fn from(f: &'a ContentFormat) -> Self
Converts to this type from the input type.
Source§impl From<u16> for ContentFormat
impl From<u16> for ContentFormat
Source§impl Hash for ContentFormat
impl Hash for ContentFormat
Source§impl<'a> IntoIterator for &'a ContentFormat
impl<'a> IntoIterator for &'a ContentFormat
Source§impl Ord for ContentFormat
impl Ord for ContentFormat
Source§fn cmp(&self, other: &ContentFormat) -> Ordering
fn cmp(&self, other: &ContentFormat) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ContentFormat
impl PartialEq for ContentFormat
Source§impl PartialOrd for ContentFormat
impl PartialOrd for ContentFormat
impl Copy for ContentFormat
impl Eq for ContentFormat
impl StructuralPartialEq for ContentFormat
Auto Trait Implementations§
impl Freeze for ContentFormat
impl RefUnwindSafe for ContentFormat
impl Send for ContentFormat
impl Sync for ContentFormat
impl Unpin for ContentFormat
impl UnwindSafe for ContentFormat
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
Mutably borrows from an owned value. Read more