pub trait Into1<T>: Sized {
// Required method
fn to(self) -> T;
}
Expand description
value-to-value conversion that consumes the input value. Change left and rught, but keep semantic of `From1``.
Required Methods§
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.