Trait core::convert::TryFrom [] [src]

pub trait TryFrom<T>: Sized {
    type Err;
    fn try_from(T) -> Result<Self, Self::Err>;
}
Unstable (try_from #33417)

Attempt to construct Self via a conversion.

Associated Types

type Err

Unstable (try_from #33417)

The type returned in the event of a conversion error.

Required Methods

fn try_from(T) -> Result<Self, Self::Err>

Unstable (try_from #33417)

Performs the conversion.

Implementors