[][src]Trait boolean_enums::lstd::convert::TryInto

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

An attempted conversion that consumes self, which may or may not be expensive.

Library authors should not directly implement this trait, but should prefer implementing the TryFrom trait, which offers greater flexibility and provides an equivalent TryInto implementation for free, thanks to a blanket implementation in the standard library. For more information on this, see the documentation for Into.

Associated Types

type Error

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

The type returned in the event of a conversion error.

Loading content...

Required methods

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

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

Performs the conversion.

Loading content...

Implementors

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

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

🔬 This is a nightly-only experimental API. (try_from)
Loading content...