pub trait TypedAction<T> {
// Required method
fn bind<'x>(&self, _: Rc<RefCell<&'x mut T>>) -> Action<'x>;
}Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".