#[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)
UnexpectedTrailingCharacters
The input should have ended, but there were characters remaining.
Trait Implementations
Performs the conversion.
Performs the conversion.
Auto Trait Implementations
impl RefUnwindSafe for Parse
impl UnwindSafe for Parse
Blanket Implementations
Mutably borrows from an owned value. Read more