pub trait GenericChainConversion: Sized {
// Provided method
fn into_generic_chain(self) -> GenericChain<Self> { ... }
}
Expand description
Chaining API to convert any (Sized
) type to GenericChain<T>
(value.into_generic_chain()
)
Provided Methods§
fn into_generic_chain(self) -> GenericChain<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.