Trait HandlerError

Source
pub trait HandlerError:
    Send
    + Sync
    + Debug
    + 'static
    + Clone { }
Expand description

Marker trait for errors that are returned by the handlers

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.

Implementors§

Source§

impl<T> HandlerError for T
where T: Send + Sync + Debug + 'static + Clone,