[][src]Trait xio_common::PreliminaryTryInto

pub trait PreliminaryTryInto<T: Sized> {
    type Error: Fail;
    fn try_into(self) -> Result<T, Self::Error>;
}

Associated Types

type Error: Fail

Loading content...

Required methods

fn try_into(self) -> Result<T, Self::Error>

Loading content...

Implementors

impl<T, U> PreliminaryTryInto<U> for T where
    U: PreliminaryTryFrom<T>, 
[src]

type Error = <U as PreliminaryTryFrom<T>>::Error

Loading content...