Trait ErrorKind

Source
pub trait ErrorKind:
    Send
    + Sync
    + Debug
    + Display { }
Expand description

this trait is used to denote various error kinds for use throughout the sdk

Implementors§

Source§

impl<T> ErrorKind for T
where T: Send + Sync + Debug + Display,