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§
fn super_into(self) -> O
fn super_into(self) -> O
Convert from a type to another type.