pub trait ChainInner{
type Chain;
// Provided methods
fn into_chain(self) -> Self::Chain { ... }
fn from_chain(chain: Self::Chain) -> Self { ... }
}
Required Associated Types§
Provided Methods§
fn into_chain(self) -> Self::Chain
fn from_chain(chain: Self::Chain) -> 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.