W3cubDocs

/Rust

Trait std::convert::TryInto

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

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.

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.

Implementors

  • impl<T, U> TryInto<U> for T where U: TryFrom<T>

© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/convert/trait.TryInto.html