[][src]Trait tsukuyomi::util::TryInto

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

A trait representing the conversion into a value of specified type.

This trait is an emulation of the standard TryInto.

Associated Types

type Error: Into<Error>

Loading content...

Required methods

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

Loading content...

Implementors

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

Loading content...