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.
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)>
Returns 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()
Auto Trait Implementations§
impl Freeze for ParseError
impl RefUnwindSafe for ParseError
impl Send for ParseError
impl Sync for ParseError
impl Unpin for ParseError
impl UnwindSafe for ParseError
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