pub enum LfsError {
Pointer(ParseError),
Store(StoreError),
Attrs(AttrsError),
Batch(BatchError),
Creds(CredsError),
}Variants§
Trait Implementations§
Source§impl Error for LfsError
impl Error for LfsError
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<AttrsError> for LfsError
impl From<AttrsError> for LfsError
Source§fn from(source: AttrsError) -> Self
fn from(source: AttrsError) -> Self
Converts to this type from the input type.
Source§impl From<BatchError> for LfsError
impl From<BatchError> for LfsError
Source§fn from(source: BatchError) -> Self
fn from(source: BatchError) -> Self
Converts to this type from the input type.
Source§impl From<CredsError> for LfsError
impl From<CredsError> for LfsError
Source§fn from(source: CredsError) -> Self
fn from(source: CredsError) -> Self
Converts to this type from the input type.
Source§impl From<ParseError> for LfsError
impl From<ParseError> for LfsError
Source§fn from(source: ParseError) -> Self
fn from(source: ParseError) -> Self
Converts to this type from the input type.
Source§impl From<StoreError> for LfsError
impl From<StoreError> for LfsError
Source§fn from(source: StoreError) -> Self
fn from(source: StoreError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LfsError
impl !RefUnwindSafe for LfsError
impl Send for LfsError
impl Sync for LfsError
impl Unpin for LfsError
impl UnsafeUnpin for LfsError
impl !UnwindSafe for LfsError
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