Struct ssi_crypto::algorithm::UnsupportedAlgorithm
source · pub struct UnsupportedAlgorithm(pub Algorithm);
Tuple Fields§
§0: Algorithm
Trait Implementations§
source§impl Debug for UnsupportedAlgorithm
impl Debug for UnsupportedAlgorithm
source§impl Display for UnsupportedAlgorithm
impl Display for UnsupportedAlgorithm
source§impl Error for UnsupportedAlgorithm
impl Error for UnsupportedAlgorithm
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()
Auto Trait Implementations§
impl Freeze for UnsupportedAlgorithm
impl RefUnwindSafe for UnsupportedAlgorithm
impl Send for UnsupportedAlgorithm
impl Sync for UnsupportedAlgorithm
impl Unpin for UnsupportedAlgorithm
impl UnwindSafe for UnsupportedAlgorithm
Blanket Implementations§
source§impl<E> BBSErrorExt for Ewhere
E: Fail,
impl<E> BBSErrorExt for Ewhere
E: Fail,
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
source§impl<E> Fail for E
impl<E> Fail for E
source§fn cause(&self) -> Option<&(dyn Fail + 'static)>
fn cause(&self) -> Option<&(dyn Fail + 'static)>
Returns a reference to the underlying cause of this failure, if it
is an error that wraps other errors. Read more
source§fn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
Returns a reference to the
Backtrace
carried by this failure, if it
carries one. Read moresource§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more