#[non_exhaustive]
pub enum InvalidFormatDescription {
UnclosedOpeningBracket {
index: usize,
},
InvalidComponentName {
name: String,
index: usize,
},
InvalidModifier {
value: String,
index: usize,
},
MissingComponentName {
index: usize,
},
}
cookies
only.Expand description
The format description provided was not valid.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
UnclosedOpeningBracket
Fields
This variant is marked as non-exhaustive
index: usize
The zero-based index of the opening bracket.
There was a bracket pair that was opened but not closed.
InvalidComponentName
Fields
This variant is marked as non-exhaustive
name: String
The name of the invalid component name.
index: usize
The zero-based index the component name starts at.
A component name is not valid.
InvalidModifier
Fields
This variant is marked as non-exhaustive
value: String
The value of the invalid modifier.
index: usize
The zero-based index the modifier starts at.
A modifier is not valid.
MissingComponentName
Fields
This variant is marked as non-exhaustive
index: usize
The zero-based index where the component name should start.
A component name is missing.
Trait Implementations
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(
err: Error
) -> Result<InvalidFormatDescription, <InvalidFormatDescription as TryFrom<Error>>::Error>
pub fn try_from(
err: Error
) -> Result<InvalidFormatDescription, <InvalidFormatDescription as TryFrom<Error>>::Error>
Performs the conversion.
Auto Trait Implementations
impl RefUnwindSafe for InvalidFormatDescription
impl Send for InvalidFormatDescription
impl Sync for InvalidFormatDescription
impl Unpin for InvalidFormatDescription
impl UnwindSafe for InvalidFormatDescription
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