logo
pub trait Into2<T> {
    fn into2(self) -> T;
}
Expand description

Local implementation of trait Into.

Separate implementation is required because of restriction : “only traits defined in the current crate can be implemented for a type parameter”.

Required Methods

Performs the conversion.

Implementors