pub trait Chainable {
// Required method
fn chain<A: Into<Action>>(self, action: A) -> Composed;
}Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".