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§
Object Safety§
This trait is not object safe.