ExtrinsicCall

Trait ExtrinsicCall 

Source
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.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

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

Source§

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

Source§

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

Implementors§