Trait TryTo

Source
pub trait TryTo {
    // Provided method
    fn try_to<T>(self) -> Result<T, Self::Error>
       where Self: TryInto_<T> { ... }
}

Provided Methods§

Source

fn try_to<T>(self) -> Result<T, Self::Error>
where Self: TryInto_<T>,

Implementors§

Source§

impl<T> TryTo for T