pub trait SuperInto<O, M = ()> {
// Required method
fn super_into(self) -> O;
}Expand description
A enhanced version of the Into trait that allows with more flexibility.
Required Methods§
Sourcefn super_into(self) -> O
fn super_into(self) -> O
Convert from a type to another type.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".