Trait Into1

Source
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§

Source

fn to(self) -> T

Converts this type into the (usually inferred) input type.

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.

Implementors§

Source§

impl<All, F> Into1<F> for All
where F: From1<All>,