Trait mls_rs_core::error::IntoAnyError

source ·
pub trait IntoAnyError: Debug + Sized {
    // Provided methods
    fn into_any_error(self) -> AnyError { ... }
    fn into_dyn_error(self) -> Result<Box<dyn Error + Send + Sync>, Self> { ... }
}
Expand description

Trait to convert a provider specific error into AnyError

Provided Methods§

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl IntoAnyError for Infallible

source§

impl IntoAnyError for Error

source§

fn into_dyn_error(self) -> Result<Box<dyn Error + Send + Sync>, Self>

Implementors§