#[repr(i32)]pub enum LZOError {
OK = 0,
ERROR = -1,
OUT_OF_MEMORY = -2,
NOT_COMPRESSIBLE = -3,
INPUT_OVERRUN = -4,
OUTPUT_OVERRUN = -5,
LOOKBEHIND_OVERRUN = -6,
EOF_NOT_FOUND = -7,
INPUT_NOT_CONSUMED = -8,
NOT_YET_IMPLEMENTED = -9,
INVALID_ARGUMENT = -10,
}
Variants§
OK = 0
ERROR = -1
OUT_OF_MEMORY = -2
NOT_COMPRESSIBLE = -3
INPUT_OVERRUN = -4
OUTPUT_OVERRUN = -5
LOOKBEHIND_OVERRUN = -6
EOF_NOT_FOUND = -7
INPUT_NOT_CONSUMED = -8
NOT_YET_IMPLEMENTED = -9
INVALID_ARGUMENT = -10
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LZOError
impl RefUnwindSafe for LZOError
impl Send for LZOError
impl Sync for LZOError
impl Unpin for LZOError
impl UnwindSafe for LZOError
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