Trait std::convert::Into

pub trait Into<T> {
    /// Converts this type into the (usually inferred) input type.
    fn into(self) -> T;
}
Expand description

Used to do value-to-value conversions.

Required Methods

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