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,
},
MissingRequiredModifier {
name: &'static str,
index: usize,
},
Expected {
what: &'static str,
index: usize,
},
NotSupported {
what: &'static str,
context: &'static str,
index: usize,
},
}
Expand description
The format description provided was not valid.
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.
UnclosedOpeningBracket
There was a bracket pair that was opened but not closed.
Fields
This variant is marked as non-exhaustive
Non-exhaustive enum variants could have additional fields added in future. Therefore, non-exhaustive enum variants cannot be constructed in external crates and cannot be matched against.
InvalidComponentName
A component name is not valid.
Fields
This variant is marked as non-exhaustive
Non-exhaustive enum variants could have additional fields added in future. Therefore, non-exhaustive enum variants cannot be constructed in external crates and cannot be matched against.
InvalidModifier
A modifier is not valid.
Fields
This variant is marked as non-exhaustive
Non-exhaustive enum variants could have additional fields added in future. Therefore, non-exhaustive enum variants cannot be constructed in external crates and cannot be matched against.
MissingComponentName
A component name is missing.
Fields
This variant is marked as non-exhaustive
Non-exhaustive enum variants could have additional fields added in future. Therefore, non-exhaustive enum variants cannot be constructed in external crates and cannot be matched against.
MissingRequiredModifier
A required modifier is missing.
Fields
This variant is marked as non-exhaustive
Non-exhaustive enum variants could have additional fields added in future. Therefore, non-exhaustive enum variants cannot be constructed in external crates and cannot be matched against.
Expected
Something was expected, but not found.
Fields
This variant is marked as non-exhaustive
Non-exhaustive enum variants could have additional fields added in future. Therefore, non-exhaustive enum variants cannot be constructed in external crates and cannot be matched against.
NotSupported
Certain behavior is not supported in the given context.
Fields
This variant is marked as non-exhaustive
Non-exhaustive enum variants could have additional fields added in future. Therefore, non-exhaustive enum variants cannot be constructed in external crates and cannot be matched against.
Trait Implementations§
source§impl Clone for InvalidFormatDescription
impl Clone for InvalidFormatDescription
source§fn clone(&self) -> InvalidFormatDescription
fn clone(&self) -> InvalidFormatDescription
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 InvalidFormatDescription
impl Debug for InvalidFormatDescription
source§impl Display for InvalidFormatDescription
impl Display for InvalidFormatDescription
source§impl Error for InvalidFormatDescription
impl Error for InvalidFormatDescription
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<InvalidFormatDescription> for Error
impl From<InvalidFormatDescription> for Error
source§fn from(original: InvalidFormatDescription) -> Self
fn from(original: InvalidFormatDescription) -> Self
Converts to this type from the input type.
source§impl PartialEq for InvalidFormatDescription
impl PartialEq for InvalidFormatDescription
source§fn 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 ==
.source§impl TryFrom<Error> for InvalidFormatDescription
impl TryFrom<Error> for InvalidFormatDescription
impl Eq for InvalidFormatDescription
impl StructuralPartialEq for InvalidFormatDescription
Auto Trait Implementations§
impl Freeze for InvalidFormatDescription
impl RefUnwindSafe for InvalidFormatDescription
impl Send for InvalidFormatDescription
impl Sync for InvalidFormatDescription
impl Unpin for InvalidFormatDescription
impl UnwindSafe for InvalidFormatDescription
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)