pub trait ActionTrait: 'static {
// Required method
fn debug_fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>;
// Provided method
fn ref_cast_type_id(&self) -> TypeId
where Self: 'static { ... }
}
pub trait ActionTrait: 'static {
// Required method
fn debug_fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>;
// Provided method
fn ref_cast_type_id(&self) -> TypeId
where Self: 'static { ... }
}