pub struct RoleParseError(/* private fields */);Expand description
Error returned when parsing an invalid role string.
Trait Implementations§
Source§impl Clone for RoleParseError
impl Clone for RoleParseError
Source§fn clone(&self) -> RoleParseError
fn clone(&self) -> RoleParseError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RoleParseError
impl Debug for RoleParseError
Source§impl Display for RoleParseError
impl Display for RoleParseError
Source§impl Error for RoleParseError
impl Error for RoleParseError
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()
Source§impl PartialEq for RoleParseError
impl PartialEq for RoleParseError
impl Eq for RoleParseError
impl StructuralPartialEq for RoleParseError
Auto Trait Implementations§
impl Freeze for RoleParseError
impl RefUnwindSafe for RoleParseError
impl Send for RoleParseError
impl Sync for RoleParseError
impl Unpin for RoleParseError
impl UnsafeUnpin for RoleParseError
impl UnwindSafe for RoleParseError
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