Enum actix_web::cookie::time::format_description::FormatItem
source · [−]#[non_exhaustive]
pub enum FormatItem<'a> {
Literal(&'a [u8]),
Component(Component),
Compound(&'a [FormatItem<'a>]),
Optional(&'a FormatItem<'a>),
First(&'a [FormatItem<'a>]),
}
cookies
only.Expand description
A complete description of how to format and parse a type.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Literal(&'a [u8])
Bytes that are formatted as-is.
Note: If you call the format
method that returns a String
, these bytes will be
passed through String::from_utf8_lossy
.
Component(Component)
A minimal representation of a single non-literal item.
Compound(&'a [FormatItem<'a>])
A series of literals or components that collectively form a partial or complete description.
Optional(&'a FormatItem<'a>)
A FormatItem
that may or may not be present when parsing. If parsing fails, there will be
no effect on the resulting struct
.
This variant has no effect on formatting, as the value is guaranteed to be present.
First(&'a [FormatItem<'a>])
A series of FormatItem
s where, when parsing, the first successful parse is used. When
formatting, the first element of the slice is used. An empty slice is a no-op when
formatting or parsing.
Trait Implementations
Performs the conversion.
Performs the conversion.
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
type Error = DifferentVariant
type Error = DifferentVariant
The type returned in the event of a conversion error.
pub fn try_from(
value: FormatItem<'_>
) -> Result<Component, <Component as TryFrom<FormatItem<'_>>>::Error>
pub fn try_from(
value: FormatItem<'_>
) -> Result<Component, <Component as TryFrom<FormatItem<'_>>>::Error>
Performs the conversion.
type Error = DifferentVariant
type Error = DifferentVariant
The type returned in the event of a conversion error.
pub fn try_from(
value: FormatItem<'a>
) -> Result<&'_ [FormatItem<'a>], <&'_ [FormatItem<'a>] as TryFrom<FormatItem<'a>>>::Error>
pub fn try_from(
value: FormatItem<'a>
) -> Result<&'_ [FormatItem<'a>], <&'_ [FormatItem<'a>] as TryFrom<FormatItem<'a>>>::Error>
Performs the conversion.
Auto Trait Implementations
impl<'a> RefUnwindSafe for FormatItem<'a>
impl<'a> Send for FormatItem<'a>
impl<'a> Sync for FormatItem<'a>
impl<'a> Unpin for FormatItem<'a>
impl<'a> UnwindSafe for FormatItem<'a>
Blanket Implementations
Mutably borrows from an owned value. Read more
Compare self to key
and return true
if they are equal.
pub fn vzip(self) -> V
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more