Skip to main content

Chainable

Trait Chainable 

Source
pub trait Chainable {
    // Required method
    fn chain<A: Into<Action>>(self, action: A) -> Composed;
}

Required Methods§

Source

fn chain<A: Into<Action>>(self, action: A) -> Composed

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<T: Into<Action>> Chainable for T