pub enum FormatParseError {
UnmatchedBracket,
MissingStartBracket,
UnescapedStartBracketInLiteral,
InvalidFormatSpecifier,
UnknownConversion,
EmptyAttribute,
MissingRightBracket,
InvalidCharacterAfterRightBracket,
}
Variants§
UnmatchedBracket
MissingStartBracket
UnescapedStartBracketInLiteral
InvalidFormatSpecifier
UnknownConversion
EmptyAttribute
MissingRightBracket
InvalidCharacterAfterRightBracket
Trait Implementations§
source§impl Debug for FormatParseError
impl Debug for FormatParseError
source§impl PartialEq for FormatParseError
impl PartialEq for FormatParseError
source§fn eq(&self, other: &FormatParseError) -> bool
fn eq(&self, other: &FormatParseError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for FormatParseError
Auto Trait Implementations§
impl Freeze for FormatParseError
impl RefUnwindSafe for FormatParseError
impl Send for FormatParseError
impl Sync for FormatParseError
impl Unpin for FormatParseError
impl UnwindSafe for FormatParseError
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