pub trait SuperFrom<T, M = ()> {
// Required method
fn super_from(_: T) -> Self;
}
Expand description
A enhanced version of the From
trait that allows with more flexibility.
Required Methods§
fn super_from(_: T) -> Self
fn super_from(_: T) -> Self
Convert from a type to another type.
Object Safety§
This trait is not object safe.