Trait ChainInner

Source
pub trait ChainInner: Sized {
    // Provided methods
    fn from_chain(chain: Chain<Self>) -> Self { ... }
    fn into_chain(self) -> Chain<Self> { ... }
    fn chain_mut(&mut self) -> Chain<&mut Self> { ... }
}

Provided Methods§

Source

fn from_chain(chain: Chain<Self>) -> Self

Source

fn into_chain(self) -> Chain<Self>

Source

fn chain_mut(&mut self) -> Chain<&mut Self>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<T> ChainInner for T