pub enum ArchiveWriteError {
Format(FormatError),
Io(Error),
}Variants§
Format(FormatError)
Io(Error)
Trait Implementations§
Source§impl Debug for ArchiveWriteError
impl Debug for ArchiveWriteError
Source§impl Display for ArchiveWriteError
impl Display for ArchiveWriteError
Source§impl Error for ArchiveWriteError
impl Error for ArchiveWriteError
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<FormatError> for ArchiveWriteError
impl From<FormatError> for ArchiveWriteError
Source§fn from(source: FormatError) -> Self
fn from(source: FormatError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for ArchiveWriteError
impl !UnwindSafe for ArchiveWriteError
impl Freeze for ArchiveWriteError
impl Send for ArchiveWriteError
impl Sync for ArchiveWriteError
impl Unpin for ArchiveWriteError
impl UnsafeUnpin for ArchiveWriteError
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