[][src]Trait fehler::AsError

pub trait AsError {
    fn as_error(&self) -> &(dyn Error + Send + Sync + 'static);
}

View type as an error object.

Required methods

fn as_error(&self) -> &(dyn Error + Send + Sync + 'static)

View type as an error object.

Loading content...

Implementations on Foreign Types

impl AsError for dyn Error + Send + Sync + 'static[src]

Loading content...

Implementors

impl AsError for Exception[src]

impl<T: Error + Send + Sync + 'static> AsError for T[src]

Loading content...