Enum wildland_corex::CoreXError
source · #[repr(C)]pub enum CoreXError {
CannotCreateForestIdentityError(String),
IdentityReadError(String),
LSSErr(String, LssError),
CatlibErr(String, CatlibError),
CryptoErr(String, CryptoError),
Generic(String),
SfoErr(String, SfoError),
}
Variants§
CannotCreateForestIdentityError(String)
IdentityReadError(String)
LSSErr(String, LssError)
CatlibErr(String, CatlibError)
CryptoErr(String, CryptoError)
Generic(String)
SfoErr(String, SfoError)
Trait Implementations§
source§impl Clone for CoreXError
impl Clone for CoreXError
source§fn clone(&self) -> CoreXError
fn clone(&self) -> CoreXError
Returns a copy 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 CoreXError
impl Debug for CoreXError
source§impl Display for CoreXError
impl Display for CoreXError
source§impl<T> ErrContext<CoreXError, T> for Result<T, CatlibError>
impl<T> ErrContext<CoreXError, T> for Result<T, CatlibError>
source§impl<T> ErrContext<CoreXError, T> for Result<T, CoreXError>
impl<T> ErrContext<CoreXError, T> for Result<T, CoreXError>
source§impl<T> ErrContext<CoreXError, T> for Result<T, CryptoError>
impl<T> ErrContext<CoreXError, T> for Result<T, CryptoError>
source§impl<T> ErrContext<CoreXError, T> for Result<T, LssError>
impl<T> ErrContext<CoreXError, T> for Result<T, LssError>
source§impl Error for CoreXError
impl Error for CoreXError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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<CoreXError> for PathResolutionError
impl From<CoreXError> for PathResolutionError
source§fn from(source: CoreXError) -> Self
fn from(source: CoreXError) -> Self
Converts to this type from the input type.
source§impl PartialEq<CoreXError> for CoreXError
impl PartialEq<CoreXError> for CoreXError
source§fn eq(&self, other: &CoreXError) -> bool
fn eq(&self, other: &CoreXError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for CoreXError
impl StructuralEq for CoreXError
impl StructuralPartialEq for CoreXError
Auto Trait Implementations§
impl RefUnwindSafe for CoreXError
impl Send for CoreXError
impl Sync for CoreXError
impl Unpin for CoreXError
impl UnwindSafe for CoreXError
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
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.