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 `From_1``.

Required Methods§

source

fn to(self) -> T

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

Object Safety§

This trait is not object safe.

Implementors§

source§

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