pub trait PreInherents {
// Provided method
fn pre_inherents() { ... }
}
Expand description
Provides a callback to execute logic before the all inherents.
Provided Methods§
Sourcefn pre_inherents()
fn pre_inherents()
Called before all inherents were applied but after on_initialize
.
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.