Enum time::error::InvalidFormatDescription
source · [−]#[non_exhaustive]
pub enum InvalidFormatDescription {
UnclosedOpeningBracket {
index: usize,
},
InvalidComponentName {
name: String,
index: usize,
},
InvalidModifier {
value: String,
index: usize,
},
MissingComponentName {
index: usize,
},
}
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
sourceimpl Clone for InvalidFormatDescription
impl Clone for InvalidFormatDescription
sourcefn clone(&self) -> InvalidFormatDescription
fn clone(&self) -> InvalidFormatDescription
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for InvalidFormatDescription
impl Debug for InvalidFormatDescription
sourceimpl Display for InvalidFormatDescription
impl Display for InvalidFormatDescription
sourceimpl Error for InvalidFormatDescription
impl Error for InvalidFormatDescription
1.30.0 · sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
sourcefn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
backtrace
)Returns a stack backtrace, if available, of where this error occurred. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
use the Display impl or to_string()
sourceimpl From<InvalidFormatDescription> for Error
impl From<InvalidFormatDescription> for Error
sourcefn from(original: InvalidFormatDescription) -> Self
fn from(original: InvalidFormatDescription) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<InvalidFormatDescription> for InvalidFormatDescription
impl PartialEq<InvalidFormatDescription> for InvalidFormatDescription
sourcefn eq(&self, other: &InvalidFormatDescription) -> bool
fn eq(&self, other: &InvalidFormatDescription) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &InvalidFormatDescription) -> bool
fn ne(&self, other: &InvalidFormatDescription) -> bool
This method tests for !=
.
sourceimpl TryFrom<Error> for InvalidFormatDescription
impl TryFrom<Error> for InvalidFormatDescription
impl Eq for InvalidFormatDescription
impl StructuralEq for InvalidFormatDescription
impl StructuralPartialEq for InvalidFormatDescription
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more