referrerpolicy=no-referrer-when-downgrade

Trait ExtrinsicCall

Source
pub trait ExtrinsicCall: ExtrinsicLike {
    type Call;

    // Required method
    fn call(&self) -> &Self::Call;
}
Expand description

An extrinsic on which we can get access to call.

Required Associated Types§

Source

type Call

The type of the 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, Signature, E> ExtrinsicCall for UncheckedExtrinsic<Address, Signature, E>
where Address: TypeInfo, Signature: TypeInfo, E: EthExtra,

Source§

type Call = <<E as EthExtra>::Config as Config>::RuntimeCall

Source§

fn call( &self, ) -> &<UncheckedExtrinsic<Address, Signature, E> as ExtrinsicCall>::Call

Implementors§

Source§

impl<Address, Call, Signature, Extra> ExtrinsicCall for polkadot_service::generic::UncheckedExtrinsic<Address, Call, Signature, Extra>

Source§

type Call = Call