pub trait ExtrinsicCall: Extrinsic {
    // Required method
    fn call(&self) -> &Self::Call;
}
Expand description

An extrinsic on which we can get access to call.

Required Methods§

source

fn call(&self) -> &Self::Call

Get the call of the extrinsic.

Implementations on Foreign Types§

source§

impl<Call, Extra> ExtrinsicCall for TestXt<Call, Extra>where Call: Codec + Sync + Send + TypeInfo, Extra: TypeInfo,

source§

fn call(&self) -> &Self::Call

source§

impl<Address, Call, Signature, Extra> ExtrinsicCall for UncheckedExtrinsic<Address, Call, Signature, Extra>where Address: TypeInfo, Call: TypeInfo, Signature: TypeInfo, Extra: SignedExtension + TypeInfo,

source§

fn call(&self) -> &Self::Call

Implementors§