pub trait ChainConversionsOwned: ChainConversions {
type OwnedChain: Sized;
// Required methods
fn into_chain(self) -> Self::OwnedChain;
fn into_inner(self) -> Self::Inner;
}
Required Associated Types§
type OwnedChain: Sized
Required Methods§
fn into_chain(self) -> Self::OwnedChain
fn into_inner(self) -> Self::Inner
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.