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
fn into(self) -> T
fn into(self) -> T
Converts this type into the (usually inferred) input type.