pub trait RemarkDispatchHandler<T> {
// Required methods
fn pre_dispatch_check(t: T) -> DispatchResult;
fn post_dispatch_check(t: T) -> DispatchResult;
}
Expand description
The handler used to check remarks before and after call dispatch.
Required Methods§
fn pre_dispatch_check(t: T) -> DispatchResult
fn post_dispatch_check(t: T) -> DispatchResult
Object Safety§
This trait is not object safe.