pub trait Hardfork:
Any
+ DynClone
+ Send
+ Sync
+ 'static {
// Required method
fn name(&self) -> &'static str;
// Provided method
fn boxed(&self) -> Box<dyn Hardfork + '_> { ... }
}
Expand description
Generic hardfork trait.