pub enum ParsePermError {
InvalidLength(String),
InvalidChar(char, usize),
}Variants§
Trait Implementations§
Source§impl Debug for ParsePermError
impl Debug for ParsePermError
Source§impl Display for ParsePermError
impl Display for ParsePermError
Source§impl Error for ParsePermError
impl Error for ParsePermError
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 From<ParsePermError> for ParseLibraryError
impl From<ParsePermError> for ParseLibraryError
Source§fn from(source: ParsePermError) -> Self
fn from(source: ParsePermError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ParsePermError
impl RefUnwindSafe for ParsePermError
impl Send for ParsePermError
impl Sync for ParsePermError
impl Unpin for ParsePermError
impl UnwindSafe for ParsePermError
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