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§
fn from_chain(chain: Chain<Self>) -> Self
fn into_chain(self) -> Chain<Self>
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.