Trait twmap::convert::TryTo

source ·
pub trait TryTo {
    // Provided method
    fn try_to<T>(self) -> T
       where Self: TryInto<T> + Sized,
             <Self as TryInto<T>>::Error: Debug { ... }
}

Provided Methods§

source

fn try_to<T>(self) -> T
where Self: TryInto<T> + Sized, <Self as TryInto<T>>::Error: Debug,

Implementors§

source§

impl<T> TryTo for T