pub enum ParseOutputNameError {
InvalidLength,
InvalidName,
ReservedNameDrv,
}Variants§
Trait Implementations§
Source§impl Debug for ParseOutputNameError
impl Debug for ParseOutputNameError
Source§impl Display for ParseOutputNameError
impl Display for ParseOutputNameError
Source§impl Error for ParseOutputNameError
impl Error for ParseOutputNameError
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<ParseOutputNameError> for ErrorKind
impl From<ParseOutputNameError> for ErrorKind
Source§fn from(source: ParseOutputNameError) -> Self
fn from(source: ParseOutputNameError) -> Self
Converts to this type from the input type.
Source§impl From<ParseStorePathNameError> for ParseOutputNameError
impl From<ParseStorePathNameError> for ParseOutputNameError
Source§fn from(value: ParseStorePathNameError) -> Self
fn from(value: ParseStorePathNameError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ParseOutputNameError
impl PartialEq for ParseOutputNameError
Source§fn eq(&self, other: &ParseOutputNameError) -> bool
fn eq(&self, other: &ParseOutputNameError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ParseOutputNameError
Auto Trait Implementations§
impl Freeze for ParseOutputNameError
impl RefUnwindSafe for ParseOutputNameError
impl Send for ParseOutputNameError
impl Sync for ParseOutputNameError
impl Unpin for ParseOutputNameError
impl UnsafeUnpin for ParseOutputNameError
impl UnwindSafe for ParseOutputNameError
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