pub struct ParseError(/* private fields */);
Expand description
An error encountered while parsing flags from text.
Implementations§
Source§impl ParseError
impl ParseError
Sourcepub fn invalid_hex_flag(flag: impl Display) -> Self
pub fn invalid_hex_flag(flag: impl Display) -> Self
An invalid hex flag was encountered.
Sourcepub fn invalid_named_flag(flag: impl Display) -> Self
pub fn invalid_named_flag(flag: impl Display) -> Self
A named flag that doesn’t correspond to any on the flags type was encountered.
Sourcepub const fn empty_flag() -> Self
pub const fn empty_flag() -> Self
A hex or named flag wasn’t found between separators.