Trait TryInto

1.34.0 (const: unstable) ยท Source
pub trait TryInto<T>: Sized {
    type Error;

    // Required method
    fn try_into(self) -> Result<T, Self::Error>;
}
Expand description

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

Library authors should usually 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.

Prefer using TryInto over TryFrom when specifying trait bounds on a generic function to ensure that types that only implement TryInto can be used as well.

ยงImplementing TryInto

This suffers the same restrictions and reasoning as implementing Into, see there for details.

Required Associated Typesยง

1.34.0 ยท Source

type Error

The type returned in the event of a conversion error.

Required Methodsยง

1.34.0 ยท Source

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

Performs the conversion.

Dyn Compatibilityยง

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementorsยง

ยง

impl TryInto<Stdio> for ChildStderr

ยง

impl TryInto<Stdio> for ChildStdin

ยง

impl TryInto<Stdio> for ChildStdout

ยง

impl TryInto<Angle> for f32

ยง

impl TryInto<Angle> for Length

ยง

impl TryInto<Angle> for LengthValue

ยง

impl TryInto<Angle> for Percentage

ยง

impl TryInto<Angle> for Time

ยง

impl TryInto<IndexReader> for IndexReaderBuilder

ยง

type Error = TantivyError

ยง

impl<E, D> TryInto<Angle> for DimensionPercentage<D>
where D: TryInto<Angle, Error = E>,

1.34.0 (const: unstable) ยท Sourceยง

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

Sourceยง

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