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<FormatParseError> for FormatParseError
impl PartialEq<FormatParseError> 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 ==
.