pub enum SourceSetupError {
SourceDoesNotExists,
SourceIsNotReadable,
NoSpaceOnDisk,
TemporaryPathNotWriteable,
AlreadyInitialized,
Unknown(String),
}
Variants§
SourceDoesNotExists
SourceIsNotReadable
NoSpaceOnDisk
TemporaryPathNotWriteable
AlreadyInitialized
Unknown(String)
Trait Implementations§
Source§impl Debug for SourceSetupError
impl Debug for SourceSetupError
Source§impl Ord for SourceSetupError
impl Ord for SourceSetupError
Source§fn cmp(&self, other: &SourceSetupError) -> Ordering
fn cmp(&self, other: &SourceSetupError) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for SourceSetupError
impl PartialEq for SourceSetupError
Source§impl PartialOrd for SourceSetupError
impl PartialOrd for SourceSetupError
impl Eq for SourceSetupError
impl StructuralPartialEq for SourceSetupError
Auto Trait Implementations§
impl Freeze for SourceSetupError
impl RefUnwindSafe for SourceSetupError
impl Send for SourceSetupError
impl Sync for SourceSetupError
impl Unpin for SourceSetupError
impl UnwindSafe for SourceSetupError
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