Enum libcryptsetup_rs::LibcryptErr
source · [−]pub enum LibcryptErr {
IOError(Error),
UuidError(Error),
NullError(NulError),
Utf8Error(Utf8Error),
JsonError(Error),
InvalidConversion,
NullPtr,
NoNull(&'static str),
Other(String),
}
Expand description
Error returned from any libcryptsetup-rs function
Variants
IOError(Error)
Wrapper for io::Error
UuidError(Error)
Wrapper for uuid::parser::ParseError
NullError(NulError)
Wrapper for ffi::NulError
Utf8Error(Utf8Error)
Wrapper for str::Utf8Error
JsonError(Error)
Wrapper for serde_json::Error
InvalidConversion
Indicates that a Rust/C conversion was unsuccessful
NullPtr
Indicates that a pointer returned was null signifying an error
NoNull(&'static str)
Indicates that a &'static str
was not created with c_str!()
macro
Other(String)
Custom message
Trait Implementations
sourceimpl Debug for LibcryptErr
impl Debug for LibcryptErr
sourceimpl Display for LibcryptErr
impl Display for LibcryptErr
sourceimpl Error for LibcryptErr
impl Error for LibcryptErr
1.30.0 · sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
sourcefn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
🔬 This is a nightly-only experimental API. (
backtrace
)Returns a stack backtrace, if available, of where this error occurred. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎 Deprecated since 1.42.0:
use the Display impl or to_string()
Auto Trait Implementations
impl RefUnwindSafe for LibcryptErr
impl Send for LibcryptErr
impl Sync for LibcryptErr
impl Unpin for LibcryptErr
impl UnwindSafe for LibcryptErr
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more