pub enum ZError {
InvalidLength(usize, usize),
OutOfBounds(usize, usize),
InvalidUtf8,
Custom(&'static str),
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ZError
impl RefUnwindSafe for ZError
impl Send for ZError
impl Sync for ZError
impl Unpin for ZError
impl UnwindSafe for ZError
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