Trait subxt_core::error::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