pub trait IndyCryptoErrorExt {
// Required method
fn to_indy<D>(self, kind: IndyCryptoErrorKind, msg: D) -> IndyCryptoError
where D: Display + Send + Sync + 'static;
}Expand description
Extension methods for Error.
Required Methods§
fn to_indy<D>(self, kind: IndyCryptoErrorKind, msg: D) -> IndyCryptoError
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.