pub enum ZippingErr {
TempFileCreationFailed(UtilsErr),
InvalidFileName,
FileOpenFailed(Error),
WriteFailed(Error),
FinishFailed(ZipError),
ZipOperationFailed(ZipError),
}
Variants§
TempFileCreationFailed(UtilsErr)
InvalidFileName
FileOpenFailed(Error)
WriteFailed(Error)
FinishFailed(ZipError)
ZipOperationFailed(ZipError)
Trait Implementations§
Source§impl Debug for ZippingErr
impl Debug for ZippingErr
Source§impl Display for ZippingErr
impl Display for ZippingErr
Source§impl From<Error> for ZippingErr
impl From<Error> for ZippingErr
Auto Trait Implementations§
impl Freeze for ZippingErr
impl !RefUnwindSafe for ZippingErr
impl Send for ZippingErr
impl Sync for ZippingErr
impl Unpin for ZippingErr
impl !UnwindSafe for ZippingErr
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