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
Auto Trait Implementations§
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