pub trait InherentBuilder: ExtrinsicCall {
// Required method
fn new_inherent(call: Self::Call) -> Self;
}
Expand description
Interface for types capable of constructing an inherent extrinsic.
Required Methods§
Sourcefn new_inherent(call: Self::Call) -> Self
fn new_inherent(call: Self::Call) -> Self
Create a new inherent from a given call.
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.