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