pub trait TryConvwhere
Self: Sized,{
// Provided method
fn try_conv<T>(self) -> Result<T, Self::Error>
where Self: TryInto<T>,
T: Sized { ... }
}
Expand description
Wraps TryInto::<T>::try_into
as a method that can be placed in pipelines.
Provided Methods§
Object Safety§
This trait is not object safe.