Trait CustomError

Source
pub trait CustomError:
    Error
    + Send
    + Sync
    + 'static { }
Expand description

Anything implementing this trait can be used in ExtrinsicParamsError::Custom.

Implementors§

Source§

impl<T: Error + Send + Sync + 'static> CustomError for T