Enum time::error::Parse [−][src]
#[non_exhaustive]
pub enum Parse {
TryFromParsed(TryFromParsed),
ParseFromDescription(ParseFromDescription),
UnexpectedTrailingCharacters,
}This is supported on crate feature
parsing only.Expand description
An error that occurred at some stage of parsing.
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.
TryFromParsed(TryFromParsed)ParseFromDescription(ParseFromDescription)The input should have ended, but there were characters remaining.
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
This is supported on crate feature
std only.Performs the conversion.
Performs the conversion.
Auto Trait Implementations
impl RefUnwindSafe for Parseimpl UnwindSafe for ParseBlanket Implementations
Mutably borrows from an owned value. Read more