pub struct ACMError<T: Display + Send + Sync + Debug + 'static>(/* private fields */);Expand description
Error to encapsulate invalid ACM construction parameters.
Trait Implementations§
Source§impl<T: Display + Send + Sync + Debug + 'static> Fail for ACMError<T>
impl<T: Display + Send + Sync + Debug + 'static> Fail for ACMError<T>
Source§fn cause(&self) -> Option<&dyn Fail>
fn cause(&self) -> Option<&dyn Fail>
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 moreAuto Trait Implementations§
impl<T> Freeze for ACMError<T>where
T: Freeze,
impl<T> RefUnwindSafe for ACMError<T>where
T: RefUnwindSafe,
impl<T> Send for ACMError<T>
impl<T> Sync for ACMError<T>
impl<T> Unpin for ACMError<T>where
T: Unpin,
impl<T> UnwindSafe for ACMError<T>where
T: UnwindSafe,
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