Trait mls_rs::error::IntoAnyError

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

Implementors§