pub trait CreateInherent<LocalCall>: CreateTransactionBase<LocalCall> {
// Required method
fn create_inherent(call: Self::RuntimeCall) -> Self::Extrinsic;
}
Expand description
Interface for creating an inherent.
Required Methods§
Sourcefn create_inherent(call: Self::RuntimeCall) -> Self::Extrinsic
fn create_inherent(call: Self::RuntimeCall) -> Self::Extrinsic
Create an inherent.
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.