Struct bitflags::parser::ParseError
source · 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.