Trait tap::conv::Conv

source ·
pub trait Convwhere
    Self: Sized,{
    // Provided method
    fn conv<T>(self) -> T
       where Self: Into<T>,
             T: Sized { ... }
}
Expand description

Wraps Into::<T>::into as a method that can be placed in pipelines.

Provided Methods§

source

fn conv<T>(self) -> Twhere Self: Into<T>, T: Sized,

Converts self into T using Into<T>.

Examples
use tap::conv::Conv;

let len = "Saluton, mondo!"
  .conv::<String>()
  .len();

Implementors§

source§

impl<T> Conv for T