pub trait ExtractCall<Call> {
// Required method
fn extract_call(&self) -> Call;
}Expand description
A trait whose purpose is to extract the Call variant of an extrinsic
Required Methods§
fn extract_call(&self) -> Call
Implementations on Foreign Types§
Source§impl<Address, Call, Extra> ExtractCall<Call> for CheckedExtrinsic<Address, Call, Extra>where
Call: Dispatchable + Clone,
Implementation for checked extrinsic.
impl<Address, Call, Extra> ExtractCall<Call> for CheckedExtrinsic<Address, Call, Extra>where
Call: Dispatchable + Clone,
Implementation for checked extrinsic.
fn extract_call(&self) -> Call
Source§impl<Address, Call, Signature, Extra> ExtractCall<Call> for UncheckedExtrinsic<Address, Call, Signature, Extra>
Implementation for unchecked extrinsic.
impl<Address, Call, Signature, Extra> ExtractCall<Call> for UncheckedExtrinsic<Address, Call, Signature, Extra>
Implementation for unchecked extrinsic.