Enum toad_msg::opt::known::content_format::ContentFormat
source · #[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 copy 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.