Trait rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::convert::TryInto

1.34.0 · source ·
pub trait TryInto<T>: Sized {
    type Error;

    // Required method
    fn try_into(self) -> Result<T, Self::Error>;
}
Available on crate feature mtls only.
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.

§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.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl TryInto<u8> for VarInt

§

type Error = <u8 as TryFrom<u64>>::Error

source§

impl TryInto<u16> for VarInt

§

type Error = <u16 as TryFrom<u64>>::Error

source§

impl TryInto<u32> for VarInt

§

type Error = <u32 as TryFrom<u64>>::Error

source§

impl TryInto<usize> for VarInt

§

type Error = <usize as TryFrom<u64>>::Error

source§

impl TryInto<Stdio> for ChildStderr

§

type Error = Error

source§

impl TryInto<Stdio> for ChildStdin

§

type Error = Error

source§

impl TryInto<Stdio> for ChildStdout

§

type Error = Error

source§

impl<'inp, 'out, T, N> TryInto<InOut<'inp, 'out, GenericArray<T, N>>> for InOutBuf<'inp, 'out, T>
where N: ArrayLength<T>,

1.34.0 · source§

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

§

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