[][src]Trait std::convert::TryFrom

pub trait TryFrom<T> {
    type Error;
    fn try_from(value: T) -> Result<Self, Self::Error>;
}
🔬 This is a nightly-only experimental API. (try_from #33417)

Attempt to construct Self via a conversion.

Associated Types

🔬 This is a nightly-only experimental API. (try_from #33417)

The type returned in the event of a conversion error.

Required Methods

🔬 This is a nightly-only experimental API. (try_from #33417)

Performs the conversion.

Implementations on Foreign Types

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

🔬 This is a nightly-only experimental API. (try_from #33417)

🔬 This is a nightly-only experimental API. (try_from #33417)

Implementors