Trait uclicious::traits::TryInto

source ·
pub trait TryInto<T>: Sized {
    // Required method
    fn try_into(self) -> Result<T, ObjectError>;
}

Required Methods§

Implementors§

source§

impl<T, U> TryInto<U> for Twhere U: FromObject<T>,