pub enum LibCZIApiError {
OK,
InvalidArgument,
InvalidHandle,
OutOfMemory,
IndexOutOfRange,
LockUnlockSemanticViolated,
UnspecifiedError,
}Expand description
the error type for libCZIAPI
Variants§
OK
InvalidArgument
InvalidHandle
OutOfMemory
IndexOutOfRange
LockUnlockSemanticViolated
UnspecifiedError
Trait Implementations§
Source§impl Clone for LibCZIApiError
impl Clone for LibCZIApiError
Source§fn clone(&self) -> LibCZIApiError
fn clone(&self) -> LibCZIApiError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LibCZIApiError
impl Debug for LibCZIApiError
Source§impl Display for LibCZIApiError
impl Display for LibCZIApiError
Source§impl Error for LibCZIApiError
impl Error for LibCZIApiError
1.30.0 · 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()
Auto Trait Implementations§
impl Freeze for LibCZIApiError
impl RefUnwindSafe for LibCZIApiError
impl Send for LibCZIApiError
impl Sync for LibCZIApiError
impl Unpin for LibCZIApiError
impl UnwindSafe for LibCZIApiError
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