Struct bitflags::parser::ParseError
source · pub struct ParseError(_);
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.
Trait Implementations§
source§impl Debug for ParseError
impl Debug for ParseError
source§impl Display for ParseError
impl Display for ParseError
source§impl Error for ParseError
impl Error for ParseError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()