Trait frame_support::weights::ClassifyDispatch [−][src]
pub trait ClassifyDispatch<T> { fn classify_dispatch(&self, target: T) -> DispatchClass; }
Expand description
Means of classifying a dispatchable function.
Required methods
fn classify_dispatch(&self, target: T) -> DispatchClass
fn classify_dispatch(&self, target: T) -> DispatchClass
Classify the dispatch function based on input data target
of type T
. When implementing
this for a dispatchable, T
will be a tuple of all arguments given to the function (except
origin).
Implementations on Foreign Types
Implementors
impl<Args, WD, CD, PF> ClassifyDispatch<Args> for FunctionOf<WD, CD, PF> where
CD: Fn(Args) -> DispatchClass,