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

1.0.0 · source ·
pub trait From<T>: Sized {
    // Required method
    fn from(value: T) -> Self;
}
Available on crate feature mtls only.
Expand description

Used to do value-to-value conversions while consuming the input value. It is the reciprocal of Into.

One should always prefer implementing From over Into because implementing From automatically provides one with an implementation of Into thanks to the blanket implementation in the standard library.

Only implement Into when targeting a version prior to Rust 1.41 and converting to a type outside the current crate. From was not able to do these types of conversions in earlier versions because of Rust’s orphaning rules. See Into for more details.

Prefer using Into over using From when specifying trait bounds on a generic function. This way, types that directly implement Into can be used as arguments as well.

The From trait is also very useful when performing error handling. When constructing a function that is capable of failing, the return type will generally be of the form Result<T, E>. From simplifies error handling by allowing a function to return a single error type that encapsulates multiple error types. See the “Examples” section and the book for more details.

Note: This trait must not fail. The From trait is intended for perfect conversions. If the conversion can fail or is not perfect, use TryFrom.

§Generic Implementations

  • From<T> for U implies Into<U> for T
  • From is reflexive, which means that From<T> for T is implemented

§When to implement From

While there’s no technical restrictions on which conversions can be done using a From implementation, the general expectation is that the conversions should typically be restricted as follows:

  • The conversion is infallible: if the conversion can fail, use TryFrom instead; don’t provide a From impl that panics.

  • The conversion is lossless: semantically, it should not lose or discard information. For example, i32: From<u16> exists, where the original value can be recovered using u16: TryFrom<i32>. And String: From<&str> exists, where you can get something equivalent to the original value via Deref. But From cannot be used to convert from u32 to u16, since that cannot succeed in a lossless way. (There’s some wiggle room here for information not considered semantically relevant. For example, Box<[T]>: From<Vec<T>> exists even though it might not preserve capacity, like how two vectors can be equal despite differing capacities.)

  • The conversion is value-preserving: the conceptual kind and meaning of the resulting value is the same, even though the Rust type and technical representation might be different. For example -1_i8 as u8 is lossless, since as casting back can recover the original value, but that conversion is not available via From because -1 and 255 are different conceptual values (despite being identical bit patterns technically). But f32: From<i16> is available because 1_i16 and 1.0_f32 are conceptually the same real number (despite having very different bit patterns technically). String: From<char> is available because they’re both text, but String: From<u32> is not available, since 1 (a number) and "1" (text) are too different. (Converting values to text is instead covered by the Display trait.)

  • The conversion is obvious: it’s the only reasonable conversion between the two types. Otherwise it’s better to have it be a named method or constructor, like how str::as_bytes is a method and how integers have methods like u32::from_ne_bytes, u32::from_le_bytes, and u32::from_be_bytes, none of which are From implementations. Whereas there’s only one reasonable way to wrap an Ipv6Addr into an IpAddr, thus IpAddr: From<Ipv6Addr> exists.

§Examples

String implements From<&str>:

An explicit conversion from a &str to a String is done as follows:

let string = "hello".to_string();
let other_string = String::from("hello");

assert_eq!(string, other_string);

While performing error handling it is often useful to implement From for your own error type. By converting underlying error types to our own custom error type that encapsulates the underlying error type, we can return a single error type without losing information on the underlying cause. The ‘?’ operator automatically converts the underlying error type to our custom error type with From::from.

use std::fs;
use std::io;
use std::num;

enum CliError {
    IoError(io::Error),
    ParseError(num::ParseIntError),
}

impl From<io::Error> for CliError {
    fn from(error: io::Error) -> Self {
        CliError::IoError(error)
    }
}

impl From<num::ParseIntError> for CliError {
    fn from(error: num::ParseIntError) -> Self {
        CliError::ParseError(error)
    }
}

fn open_and_parse_file(file_name: &str) -> Result<i32, CliError> {
    let mut contents = fs::read_to_string(&file_name)?;
    let num: i32 = contents.trim().parse()?;
    Ok(num)
}

Required Methods§

1.0.0 · source

fn from(value: T) -> Self

Converts to this type from the input type.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl From<&'static str> for StrContextValue

source§

impl From<&'static str> for bytes::bytes::Bytes

source§

impl From<&'static Location<'static>> for Source

source§

impl From<&'static Tls12CipherSuite> for rustls::suites::SupportedCipherSuite

source§

impl From<&'static Tls12CipherSuite> for rustls::suites::SupportedCipherSuite

source§

impl From<&'static Tls13CipherSuite> for rustls::suites::SupportedCipherSuite

source§

impl From<&'static Tls13CipherSuite> for rustls::suites::SupportedCipherSuite

source§

impl From<&'static [u8]> for bytes::bytes::Bytes

source§

impl From<&ExpectCt> for rocket::http::Header<'static>

source§

impl From<&Frame> for rocket::http::Header<'static>

source§

impl From<&Hsts> for rocket::http::Header<'static>

source§

impl From<&NoSniff> for rocket::http::Header<'static>

source§

impl From<&Prefetch> for rocket::http::Header<'static>

source§

impl From<&Referrer> for rocket::http::Header<'static>

source§

impl From<&XssFilter> for rocket::http::Header<'static>

source§

impl From<&SocketAddress<'_>> for SocketAddr

source§

impl From<&BorrowedFormatItem<'_>> for OwnedFormatItem

source§

impl From<&str> for rocket::serde::json::Value

source§

impl From<&str> for Source

source§

impl From<&str> for figment::value::value::Value

§

impl From<&str> for RawStrBuf

1.17.0 · source§

impl From<&str> for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::boxed::Box<str>

1.0.0 · source§

impl From<&str> for String

1.0.0 · source§

impl From<&str> for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::vec::Vec<u8>

1.21.0 · source§

impl From<&str> for Rc<str>

1.21.0 · source§

impl From<&str> for Arc<str>

source§

impl From<&str> for allocator_api2::stable::vec::Vec<u8>

source§

impl From<&str> for figment::error::Error

source§

impl From<&str> for ServerName

source§

impl From<&str> for InternalString

source§

impl From<&str> for RawString

§

impl From<&Cookie<'_>> for rocket::http::Header<'static>

§

impl From<&RawStr> for RawStrBuf

source§

impl From<&UncasedStr> for Arc<UncasedStr>

source§

impl From<&Permission> for rocket::http::Header<'static>

source§

impl From<&Formatter<'_>> for FormatterOptions

1.35.0 · source§

impl From<&String> for String

source§

impl From<&String> for InternalString

source§

impl From<&String> for RawString

1.17.0 · source§

impl From<&CStr> for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::boxed::Box<CStr>

1.7.0 · source§

impl From<&CStr> for CString

1.24.0 · source§

impl From<&CStr> for Rc<CStr>

1.24.0 · source§

impl From<&CStr> for Arc<CStr>

source§

impl From<&CStr> for allocator_api2::stable::boxed::Box<CStr>

source§

impl From<&Ipv4Addr> for IpV4Address

source§

impl From<&Ipv6Addr> for IpV6Address

source§

impl From<&StreamResult> for Result<MZStatus, MZError>

1.17.0 · source§

impl From<&OsStr> for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::boxed::Box<OsStr>

1.24.0 · source§

impl From<&OsStr> for Rc<OsStr>

1.24.0 · source§

impl From<&OsStr> for Arc<OsStr>

source§

impl From<&Path> for Source

1.17.0 · source§

impl From<&Path> for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::boxed::Box<Path>

1.24.0 · source§

impl From<&Path> for Rc<Path>

1.24.0 · source§

impl From<&Path> for Arc<Path>

source§

impl From<&Aes128Enc> for Aes128

source§

impl From<&Aes128Enc> for Aes128Dec

source§

impl From<&Aes192Enc> for Aes192

source§

impl From<&Aes192Enc> for Aes192Dec

source§

impl From<&Aes256Enc> for Aes256

source§

impl From<&Aes256Enc> for Aes256Dec

source§

impl From<&ObjectIdentifier> for ObjectIdentifier

source§

impl From<&SocketAddressV4> for SocketAddr

source§

impl From<&SocketAddressV4> for SocketAddrV4

source§

impl From<&SocketAddressV6> for SocketAddr

source§

impl From<&SocketAddressV6> for SocketAddrV6

source§

impl From<&InternalString> for InternalString

source§

impl From<&InternalString> for RawString

source§

impl From<&ChaCha8Rng> for rand_chacha::chacha::ChaCha8Rng

source§

impl From<&ChaCha12Rng> for rand_chacha::chacha::ChaCha12Rng

source§

impl From<&ChaCha20Rng> for rand_chacha::chacha::ChaCha20Rng

source§

impl From<&[u8; 12]> for Nonce

source§

impl From<&[u8; 16]> for Nonce

source§

impl From<&[u8]> for SharedSecret

source§

impl From<&[u8]> for PrefixedPayload

source§

impl From<&[u8]> for rustls::quic::Tag

source§

impl From<&[u32; 3]> for Nonce

source§

impl From<&[BigEndian<u32>; 3]> for Nonce

source§

impl From<&[LittleEndian<u32>; 3]> for Nonce

1.44.0 · source§

impl From<&mut str> for String

source§

impl From<&mut Formatter<'_>> for FormatterOptions

source§

impl From<(&'static str, &'static str)> for OidEntry

source§

impl From<(Option<isize>, Option<isize>)> for rocket::form::error::ErrorKind<'_>

source§

impl From<(Option<u64>, Option<u64>)> for rocket::form::error::ErrorKind<'_>

source§

impl From<(Option<ByteUnit>, Option<ByteUnit>)> for rocket::form::error::ErrorKind<'_>

source§

impl From<(IpAddr, u16)> for SocketAddress

source§

impl From<(Ipv4Addr, u16)> for SocketAddressV4

source§

impl From<(Ipv6Addr, u16)> for SocketAddressV6

source§

impl From<LogLevel> for log::LevelFilter

source§

impl From<ErrorKind> for rocket::Error

source§

impl From<Error<'_>> for rocket::form::Error<'_>

Available on crate feature json only.
source§

impl From<Error> for rocket::listener::Error

source§

impl From<X509Error> for Err<X509Error>

source§

impl From<Err<X509Error>> for rocket::mtls::Error

source§

impl From<Err<X509Error>> for X509Error

source§

impl From<Err<Error>> for X509Error

source§

impl From<Err<Error>> for rocket::mtls::x509::der_parser::asn1_rs::Error

source§

impl From<Error> for X509Error

source§

impl From<Error> for Err<Error>

source§

impl From<Error> for SerializeError

source§

impl From<Real> for f32

source§

impl From<Real> for f64

source§

impl From<ErrorKind> for X509Error

source§

impl From<TryReserveErrorKind> for TryReserveError

source§

impl From<Option<Timestamp>> for Timer

source§

impl From<Option<Level>> for tracing_core::metadata::LevelFilter

source§

impl From<Infallible> for rocket::tls::Error

Available on crate feature tls only.
1.36.0 · source§

impl From<Infallible> for TryFromSliceError

1.34.0 · source§

impl From<Infallible> for core::num::error::TryFromIntError

source§

impl From<Infallible> for http::error::Error

source§

impl From<Infallible> for ValidationError

1.45.0 · source§

impl From<Cow<'_, str>> for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::boxed::Box<str>

1.45.0 · source§

impl From<Cow<'_, CStr>> for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::boxed::Box<CStr>

1.45.0 · source§

impl From<Cow<'_, OsStr>> for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::boxed::Box<OsStr>

1.45.0 · source§

impl From<Cow<'_, Path>> for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::boxed::Box<Path>

source§

impl From<AsciiChar> for char

source§

impl From<AsciiChar> for u8

source§

impl From<AsciiChar> for u16

source§

impl From<AsciiChar> for u32

source§

impl From<AsciiChar> for u64

source§

impl From<AsciiChar> for u128

source§

impl From<IpAddr> for rustls_pki_types::server_name::IpAddr

source§

impl From<IpAddr> for webpki::subject_name::ip_address::IpAddr

source§

impl From<SocketAddr> for Endpoint

source§

impl From<SocketAddr> for SocketAddress

source§

impl From<SocketAddr> for SockAddr

1.14.0 · source§

impl From<ErrorKind> for std::io::error::Error

Intended for use for errors not exposed to the user, where allocating onto the heap (for normal construction via Error::new) is too costly.

source§

impl From<DecryptionContext> for EncryptionContext

source§

impl From<EncryptionContext> for DecryptionContext

source§

impl From<DecodeError> for base64::decode::DecodeSliceError

source§

impl From<DecodeError> for base64::decode::DecodeSliceError

source§

impl From<Either<Error, Error>> for rocket::listener::Error

source§

impl From<Kind> for figment::error::Error

source§

impl From<Empty> for figment::value::value::Value

source§

impl From<Num> for figment::value::value::Value

source§

impl From<NumValueReadError> for rocket::serde::msgpack::Error

source§

impl From<ValueReadError> for rocket::serde::msgpack::Error

source§

impl From<ValueWriteError> for rmp_serde::encode::Error

source§

impl From<ValueWriteError> for std::io::error::Error

source§

impl From<Marker> for u8

source§

impl From<IpAddr> for core::net::ip_addr::IpAddr

source§

impl From<Error> for ControlFlow<Error, Error>

source§

impl From<Error> for ControlFlow<Error, Error>

source§

impl From<Error> for CertRevocationListError

source§

impl From<EncryptError> for EarlyDataError

source§

impl From<AlertDescription> for u8

source§

impl From<CipherSuite> for u16

source§

impl From<ContentType> for u8

source§

impl From<HandshakeType> for u8

source§

impl From<ProtocolVersion> for u16

source§

impl From<SignatureAlgorithm> for u8

source§

impl From<SignatureScheme> for u16

source§

impl From<CertRevocationListError> for rustls::error::Error

source§

impl From<CertRevocationListError> for rustls::error::Error

source§

impl From<CertRevocationListError> for VerifierBuilderError

source§

impl From<CertificateError> for rustls::enums::AlertDescription

source§

impl From<CertificateError> for rustls::enums::AlertDescription

source§

impl From<CertificateError> for rustls::error::Error

source§

impl From<CertificateError> for rustls::error::Error

source§

impl From<Error> for rocket::tls::Error

Available on crate feature tls only.
source§

impl From<InvalidMessage> for rustls::error::Error

source§

impl From<InvalidMessage> for rustls::error::Error

source§

impl From<PeerIncompatible> for rustls::error::Error

source§

impl From<PeerIncompatible> for rustls::error::Error

source§

impl From<PeerMisbehaved> for rustls::error::Error

source§

impl From<PeerMisbehaved> for rustls::error::Error

source§

impl From<AlertLevel> for u8

source§

impl From<Compression> for u8

source§

impl From<EchVersion> for u16

source§

impl From<HashAlgorithm> for u8

source§

impl From<HpkeAead> for u16

source§

impl From<HpkeKdf> for u16

source§

impl From<HpkeKem> for u16

source§

impl From<NamedGroup> for u16

source§

impl From<VerifierBuilderError> for rocket::tls::Error

Available on crate feature tls only.
source§

impl From<DecoderError> for &'static str

source§

impl From<DecoderError> for s2n_quic_core::crypto::packet_protection::Error

source§

impl From<DecoderError> for s2n_quic_core::crypto::tls::error::Error

source§

impl From<DecoderError> for s2n_quic_core::transport::error::Error

Implements conversion from decoder errors

source§

impl From<DecoderError> for ValidationError

source§

impl From<Error> for std::io::error::ErrorKind

source§

impl From<Error> for ProcessingError

source§

impl From<Error> for StreamError

source§

impl From<Error> for std::io::error::Error

§

impl From<Error> for ConnectionError

source§

impl From<Error> for s2n_quic_core::transport::error::Error

source§

impl From<SocketAddress<'_>> for SocketAddr

source§

impl From<SocketAddress<'_>> for s2n_quic_core::path::LocalAddress

source§

impl From<SocketAddress<'_>> for s2n_quic_core::path::RemoteAddress

source§

impl From<SocketAddress> for SocketAddr

source§

impl From<SocketAddress> for s2n_quic_core::path::LocalAddress

source§

impl From<SocketAddress> for s2n_quic_core::path::RemoteAddress

source§

impl From<PacketType> for u8

source§

impl From<StreamError> for std::io::error::ErrorKind

source§

impl From<StreamError> for std::io::error::Error

§

impl From<StreamError> for ReadError

§

impl From<StreamError> for SendStreamError

source§

impl From<Unexpected<'_>> for Actual

source§

impl From<Format> for time::error::Error

source§

impl From<InvalidFormatDescription> for time::error::Error

source§

impl From<Parse> for time::error::Error

source§

impl From<ParseFromDescription> for time::error::Error

source§

impl From<ParseFromDescription> for Parse

source§

impl From<TryFromParsed> for time::error::Error

source§

impl From<TryFromParsed> for Parse

source§

impl From<BorrowedFormatItem<'_>> for OwnedFormatItem

source§

impl From<Component> for BorrowedFormatItem<'_>

source§

impl From<Component> for OwnedFormatItem

source§

impl From<Month> for u8

source§

impl From<Error> for TomlError

source§

impl From<Attribute> for Style

source§

impl From<Quirk> for Style

source§

impl From<Color> for Style

source§

impl From<bool> for rocket::serde::json::Value

source§

impl From<bool> for figment::value::value::Value

source§

impl From<bool> for toml::value::Value

source§

impl From<bool> for toml_edit::value::Value

1.68.0 · source§

impl From<bool> for f32

1.68.0 · source§

impl From<bool> for f64

1.28.0 · source§

impl From<bool> for i8

1.28.0 · source§

impl From<bool> for i16

1.28.0 · source§

impl From<bool> for i32

1.28.0 · source§

impl From<bool> for i64

1.28.0 · source§

impl From<bool> for i128

1.28.0 · source§

impl From<bool> for isize

1.28.0 · source§

impl From<bool> for u8

1.28.0 · source§

impl From<bool> for u16

1.28.0 · source§

impl From<bool> for u32

1.28.0 · source§

impl From<bool> for u64

1.28.0 · source§

impl From<bool> for u128

1.28.0 · source§

impl From<bool> for usize

source§

impl From<bool> for BigInt

source§

impl From<bool> for BigUint

1.24.0 · source§

impl From<bool> for AtomicBool

source§

impl From<char> for figment::value::value::Value

source§

impl From<char> for StrContextValue

1.13.0 · source§

impl From<char> for u32

1.51.0 · source§

impl From<char> for u64

1.51.0 · source§

impl From<char> for u128

1.46.0 · source§

impl From<char> for String

1.6.0 · source§

impl From<f16> for f128

source§

impl From<f32> for rocket::serde::json::Value

source§

impl From<f32> for Real

source§

impl From<f32> for Num

source§

impl From<f32> for figment::value::value::Value

source§

impl From<f32> for toml::value::Value

1.6.0 · source§

impl From<f32> for f64

1.6.0 · source§

impl From<f32> for f128

source§

impl From<f64> for rocket::serde::json::Value

source§

impl From<f64> for Real

source§

impl From<f64> for Num

source§

impl From<f64> for figment::value::value::Value

source§

impl From<f64> for toml::value::Value

source§

impl From<f64> for toml_edit::value::Value

1.6.0 · source§

impl From<f64> for f128

source§

impl From<i8> for rocket::serde::json::Value

source§

impl From<i8> for Num

source§

impl From<i8> for figment::value::value::Value

source§

impl From<i8> for toml::value::Value

1.6.0 · source§

impl From<i8> for f32

1.6.0 · source§

impl From<i8> for f64

1.5.0 · source§

impl From<i8> for i16

1.5.0 · source§

impl From<i8> for i32

1.5.0 · source§

impl From<i8> for i64

1.26.0 · source§

impl From<i8> for i128

1.5.0 · source§

impl From<i8> for isize

source§

impl From<i8> for ByteUnit

source§

impl From<i8> for BigInt

source§

impl From<i8> for Integer<'_>

1.34.0 · source§

impl From<i8> for AtomicI8

source§

impl From<i8> for i24

source§

impl From<i8> for i48

source§

impl From<i8> for serde_json::number::Number

source§

impl From<i16> for rocket::serde::json::Value

source§

impl From<i16> for Num

source§

impl From<i16> for figment::value::value::Value

1.6.0 · source§

impl From<i16> for f32

1.6.0 · source§

impl From<i16> for f64

1.5.0 · source§

impl From<i16> for i32

1.5.0 · source§

impl From<i16> for i64

1.26.0 · source§

impl From<i16> for i128

1.26.0 · source§

impl From<i16> for isize

source§

impl From<i16> for ByteUnit

source§

impl From<i16> for BigInt

source§

impl From<i16> for Integer<'_>

1.34.0 · source§

impl From<i16> for AtomicI16

source§

impl From<i16> for HeaderValue

source§

impl From<i16> for i24

source§

impl From<i16> for i48

source§

impl From<i16> for s2n_codec::zerocopy::I16

source§

impl From<i16> for serde_json::number::Number

source§

impl From<i32> for rocket::serde::json::Value

source§

impl From<i32> for Num

source§

impl From<i32> for figment::value::value::Value

source§

impl From<i32> for toml::value::Value

1.6.0 · source§

impl From<i32> for f64

1.5.0 · source§

impl From<i32> for i64

1.26.0 · source§

impl From<i32> for i128

source§

impl From<i32> for ByteUnit

source§

impl From<i32> for BigInt

source§

impl From<i32> for Integer<'_>

1.34.0 · source§

impl From<i32> for AtomicI32

source§

impl From<i32> for HeaderValue

source§

impl From<i32> for i48

source§

impl From<i32> for s2n_codec::zerocopy::I32

source§

impl From<i32> for serde_json::number::Number

source§

impl From<i32> for Domain

source§

impl From<i32> for socket2::Protocol

source§

impl From<i32> for Type

source§

impl From<i32> for SignalKind

source§

impl From<i64> for rocket::serde::json::Value

source§

impl From<i64> for Num

source§

impl From<i64> for figment::value::value::Value

source§

impl From<i64> for toml::value::Value

source§

impl From<i64> for toml_edit::value::Value

1.26.0 · source§

impl From<i64> for i128

source§

impl From<i64> for ByteUnit

source§

impl From<i64> for BigInt

source§

impl From<i64> for Integer<'_>

1.34.0 · source§

impl From<i64> for AtomicI64

source§

impl From<i64> for HeaderValue

source§

impl From<i64> for s2n_codec::zerocopy::I64

source§

impl From<i64> for serde_json::number::Number

source§

impl From<i128> for Num

source§

impl From<i128> for figment::value::value::Value

source§

impl From<i128> for ByteUnit

source§

impl From<i128> for BigInt

source§

impl From<i128> for Integer<'_>

source§

impl From<i128> for s2n_codec::zerocopy::I128

source§

impl From<isize> for rocket::serde::json::Value

source§

impl From<isize> for Num

source§

impl From<isize> for figment::value::value::Value

source§

impl From<isize> for ByteUnit

source§

impl From<isize> for BigInt

1.23.0 · source§

impl From<isize> for AtomicIsize

source§

impl From<isize> for HeaderValue

source§

impl From<isize> for serde_json::number::Number

1.34.0 · source§

impl From<!> for Infallible

source§

impl From<!> for core::num::error::TryFromIntError

source§

impl From<u8> for rocket::serde::json::Value

source§

impl From<u8> for Num

source§

impl From<u8> for figment::value::value::Value

source§

impl From<u8> for Marker

source§

impl From<u8> for rustls::enums::AlertDescription

source§

impl From<u8> for rustls::enums::AlertDescription

source§

impl From<u8> for rustls::enums::ContentType

source§

impl From<u8> for rustls::enums::ContentType

source§

impl From<u8> for rustls::enums::HandshakeType

source§

impl From<u8> for rustls::enums::HandshakeType

source§

impl From<u8> for rustls::enums::SignatureAlgorithm

source§

impl From<u8> for rustls::enums::SignatureAlgorithm

source§

impl From<u8> for rustls::msgs::enums::AlertLevel

source§

impl From<u8> for rustls::msgs::enums::AlertLevel

source§

impl From<u8> for CertificateStatusType

source§

impl From<u8> for ClientCertificateType

source§

impl From<u8> for rustls::msgs::enums::Compression

source§

impl From<u8> for rustls::msgs::enums::Compression

source§

impl From<u8> for ECCurveType

source§

impl From<u8> for ECPointFormat

source§

impl From<u8> for rustls::msgs::enums::HashAlgorithm

source§

impl From<u8> for rustls::msgs::enums::HashAlgorithm

source§

impl From<u8> for HeartbeatMessageType

source§

impl From<u8> for HeartbeatMode

source§

impl From<u8> for KeyUpdateRequest

source§

impl From<u8> for PSKKeyExchangeMode

source§

impl From<u8> for ServerNameType

source§

impl From<u8> for KeyPhase

source§

impl From<u8> for PacketType

source§

impl From<u8> for toml::value::Value

1.13.0 · source§

impl From<u8> for char

Maps a byte in 0x00..=0xFF to a char whose code point has the same value, in U+0000..=U+00FF.

Unicode is designed such that this effectively decodes bytes with the character encoding that IANA calls ISO-8859-1. This encoding is compatible with ASCII.

Note that this is different from ISO/IEC 8859-1 a.k.a. ISO 8859-1 (with one less hyphen), which leaves some “blanks”, byte values that are not assigned to any character. ISO-8859-1 (the IANA one) assigns them to the C0 and C1 control codes.

Note that this is also different from Windows-1252 a.k.a. code page 1252, which is a superset ISO/IEC 8859-1 that assigns some (not all!) blanks to punctuation and various Latin characters.

To confuse things further, on the Web ascii, iso-8859-1, and windows-1252 are all aliases for a superset of Windows-1252 that fills the remaining blanks with corresponding C0 and C1 control codes.

1.6.0 · source§

impl From<u8> for f32

1.6.0 · source§

impl From<u8> for f64

1.5.0 · source§

impl From<u8> for i16

1.5.0 · source§

impl From<u8> for i32

1.5.0 · source§

impl From<u8> for i64

1.26.0 · source§

impl From<u8> for i128

1.26.0 · source§

impl From<u8> for isize

1.5.0 · source§

impl From<u8> for u16

1.5.0 · source§

impl From<u8> for u32

1.5.0 · source§

impl From<u8> for u64

1.26.0 · source§

impl From<u8> for u128

1.5.0 · source§

impl From<u8> for usize

source§

impl From<u8> for ByteUnit

source§

impl From<u8> for BigInt

source§

impl From<u8> for BigUint

source§

impl From<u8> for Integer<'_>

1.34.0 · source§

impl From<u8> for AtomicU8

1.61.0 · source§

impl From<u8> for ExitCode

source§

impl From<u8> for i24

source§

impl From<u8> for i48

source§

impl From<u8> for u24

source§

impl From<u8> for u48

source§

impl From<u8> for s2n_quic_core::application::error::Error

source§

impl From<u8> for VarInt

source§

impl From<u8> for serde_json::number::Number

source§

impl From<u8> for Choice

source§

impl From<u16> for rocket::serde::json::Value

source§

impl From<u16> for Num

source§

impl From<u16> for figment::value::value::Value

source§

impl From<u16> for rustls::enums::CipherSuite

source§

impl From<u16> for rustls::enums::CipherSuite

source§

impl From<u16> for rustls::enums::ProtocolVersion

source§

impl From<u16> for rustls::enums::ProtocolVersion

source§

impl From<u16> for rustls::enums::SignatureScheme

source§

impl From<u16> for rustls::enums::SignatureScheme

source§

impl From<u16> for EchVersion

source§

impl From<u16> for ExtensionType

source§

impl From<u16> for HpkeAead

source§

impl From<u16> for HpkeKdf

source§

impl From<u16> for HpkeKem

source§

impl From<u16> for NamedCurve

source§

impl From<u16> for rustls::msgs::enums::NamedGroup

source§

impl From<u16> for rustls::msgs::enums::NamedGroup

1.6.0 · source§

impl From<u16> for f32

1.6.0 · source§

impl From<u16> for f64

1.5.0 · source§

impl From<u16> for i32

1.5.0 · source§

impl From<u16> for i64

1.26.0 · source§

impl From<u16> for i128

1.5.0 · source§

impl From<u16> for u32

1.5.0 · source§

impl From<u16> for u64

1.26.0 · source§

impl From<u16> for u128

1.26.0 · source§

impl From<u16> for usize

source§

impl From<u16> for ByteUnit

source§

impl From<u16> for BigInt

source§

impl From<u16> for BigUint

source§

impl From<u16> for Integer<'_>

1.34.0 · source§

impl From<u16> for AtomicU16

source§

impl From<u16> for HeaderValue

source§

impl From<u16> for i24

source§

impl From<u16> for i48

source§

impl From<u16> for u24

source§

impl From<u16> for u48

source§

impl From<u16> for s2n_codec::zerocopy::U16

source§

impl From<u16> for s2n_quic_core::application::error::Error

source§

impl From<u16> for VarInt

source§

impl From<u16> for serde_json::number::Number

source§

impl From<u32> for rocket::serde::json::Value

source§

impl From<u32> for Num

source§

impl From<u32> for figment::value::value::Value

source§

impl From<u32> for toml::value::Value

1.6.0 · source§

impl From<u32> for f64

1.5.0 · source§

impl From<u32> for i64

1.26.0 · source§

impl From<u32> for i128

1.5.0 · source§

impl From<u32> for u64

1.26.0 · source§

impl From<u32> for u128

source§

impl From<u32> for ByteUnit

source§

impl From<u32> for BigInt

source§

impl From<u32> for BigUint

source§

impl From<u32> for Integer<'_>

source§

impl From<u32> for OptTaggedParser

source§

impl From<u32> for rocket::mtls::x509::der_parser::asn1_rs::Tag

1.1.0 · source§

impl From<u32> for core::net::ip_addr::Ipv4Addr

1.34.0 · source§

impl From<u32> for AtomicU32

source§

impl From<u32> for Reason

source§

impl From<u32> for HeaderValue

source§

impl From<u32> for Mode

source§

impl From<u32> for i48

source§

impl From<u32> for u48

source§

impl From<u32> for s2n_codec::zerocopy::U32

source§

impl From<u32> for s2n_quic_core::application::error::Error

source§

impl From<u32> for VarInt

source§

impl From<u32> for serde_json::number::Number

source§

impl From<u64> for rocket::serde::json::Value

source§

impl From<u64> for Num

source§

impl From<u64> for figment::value::value::Value

1.26.0 · source§

impl From<u64> for i128

1.26.0 · source§

impl From<u64> for u128

source§

impl From<u64> for ByteUnit

source§

impl From<u64> for BigInt

source§

impl From<u64> for BigUint

source§

impl From<u64> for Integer<'_>

1.34.0 · source§

impl From<u64> for AtomicU64

source§

impl From<u64> for HeaderValue

source§

impl From<u64> for s2n_codec::zerocopy::U64

source§

impl From<u64> for serde_json::number::Number

source§

impl From<u128> for Num

source§

impl From<u128> for figment::value::value::Value

source§

impl From<u128> for ByteUnit

source§

impl From<u128> for BigInt

source§

impl From<u128> for BigUint

source§

impl From<u128> for Integer<'_>

1.26.0 · source§

impl From<u128> for core::net::ip_addr::Ipv6Addr

source§

impl From<u128> for s2n_codec::zerocopy::U128

source§

impl From<u128> for Hash128

source§

impl From<()> for rocket::serde::json::Value

source§

impl From<()> for KeyRejected

source§

impl From<()> for aws_lc_rs::error::Unspecified

source§

impl From<usize> for rocket::serde::json::Value

source§

impl From<usize> for Length

source§

impl From<usize> for Num

source§

impl From<usize> for figment::value::value::Value

source§

impl From<usize> for ByteUnit

source§

impl From<usize> for BigInt

source§

impl From<usize> for BigUint

1.23.0 · source§

impl From<usize> for AtomicUsize

source§

impl From<usize> for HeaderValue

source§

impl From<usize> for serde_json::number::Number

source§

impl From<usize> for winnow::stream::Range

source§

impl From<ByteUnit> for u64

source§

impl From<ByteUnit> for u128

source§

impl From<FileServer> for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::vec::Vec<Route>

§

impl From<Accept> for rocket::http::Header<'static>

Creates a new Header with name Accept and the value set to the HTTP rendering of this Accept header.

§

impl From<ContentType> for rocket::http::Header<'static>

Creates a new Header with name Content-Type and the value set to the HTTP rendering of this Content-Type.

§

impl From<Cookie<'_>> for rocket::http::Header<'static>

§

impl From<MediaType> for rocket::http::ContentType

§

impl From<MediaType> for QMediaType

§

impl From<RawStrBuf> for Cow<'_, RawStr>

§

impl From<Asterisk> for Reference<'_>

source§

impl From<Braced> for Uuid

source§

impl From<Hyphenated> for Uuid

source§

impl From<Simple> for Uuid

source§

impl From<Urn> for Uuid

source§

impl From<Uuid> for Braced

source§

impl From<Uuid> for Hyphenated

source§

impl From<Uuid> for Simple

source§

impl From<Uuid> for Urn

source§

impl From<Uuid> for String

source§

impl From<Uuid> for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::vec::Vec<u8>

source§

impl From<BigUint> for BigInt

source§

impl From<Tag> for rocket::mtls::x509::der_parser::asn1_rs::Header<'_>

source§

impl From<Tag> for OptTaggedParser

source§

impl From<LayoutError> for TryReserveErrorKind

source§

impl From<LayoutError> for CollectionAllocErr

1.18.0 · source§

impl From<Box<str>> for String

source§

impl From<Box<str>> for InternalString

source§

impl From<Box<str>> for RawString

1.18.0 · source§

impl From<Box<CStr>> for CString

1.18.0 · source§

impl From<Box<OsStr>> for OsString

1.18.0 · source§

impl From<Box<Path>> for PathBuf

source§

impl From<Box<RawValue>> for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::boxed::Box<str>

source§

impl From<Box<[u8]>> for bytes::bytes::Bytes

1.78.0 · source§

impl From<TryReserveError> for std::io::error::Error

source§

impl From<Range<usize>> for winnow::stream::Range

source§

impl From<RangeFrom<usize>> for winnow::stream::Range

source§

impl From<RangeFull> for winnow::stream::Range

source§

impl From<RangeInclusive<usize>> for winnow::stream::Range

source§

impl From<RangeTo<usize>> for winnow::stream::Range

source§

impl From<RangeToInclusive<usize>> for winnow::stream::Range

source§

impl From<Utf8Error> for rocket::serde::msgpack::Error

source§

impl From<Utf8Error> for rocket::mtls::x509::der_parser::asn1_rs::Error

source§

impl From<Utf8Error> for ParseError

source§

impl From<FromUtf8Error> for rocket::mtls::x509::der_parser::asn1_rs::Error

source§

impl From<FromUtf16Error> for rocket::mtls::x509::der_parser::asn1_rs::Error

source§

impl From<String> for rocket::serde::json::Value

source§

impl From<String> for Source

source§

impl From<String> for figment::value::value::Value

source§

impl From<String> for InlinableString

source§

impl From<String> for toml::value::Value

source§

impl From<String> for toml_edit::value::Value

source§

impl From<String> for Cookie<'static>

§

impl From<String> for RawStrBuf

source§

impl From<String> for Uncased<'static>

source§

impl From<String> for BmpString<'_>

source§

impl From<String> for GeneralString<'_>

source§

impl From<String> for GraphicString<'_>

source§

impl From<String> for Ia5String<'_>

source§

impl From<String> for NumericString<'_>

source§

impl From<String> for ObjectDescriptor<'_>

source§

impl From<String> for PrintableString<'_>

source§

impl From<String> for TeletexString<'_>

source§

impl From<String> for UniversalString<'_>

source§

impl From<String> for Utf8String<'_>

source§

impl From<String> for VideotexString<'_>

source§

impl From<String> for VisibleString<'_>

1.20.0 · source§

impl From<String> for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::boxed::Box<str>

1.14.0 · source§

impl From<String> for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::vec::Vec<u8>

1.21.0 · source§

impl From<String> for Rc<str>

1.21.0 · source§

impl From<String> for Arc<str>

1.0.0 · source§

impl From<String> for OsString

1.0.0 · source§

impl From<String> for PathBuf

source§

impl From<String> for bytes::bytes::Bytes

source§

impl From<String> for figment::error::Error

source§

impl From<String> for ServerName

source§

impl From<String> for InternalString

source§

impl From<String> for toml_edit::key::Key

source§

impl From<String> for RawString

source§

impl From<Vec<BorrowedFormatItem<'_>>> for OwnedFormatItem

source§

impl From<Vec<OwnedFormatItem>> for OwnedFormatItem

source§

impl From<Vec<u8>> for bytes::bytes::Bytes

source§

impl From<Vec<u8>> for ByteBuf

source§

impl From<Vec<u8>> for Der<'static>

source§

impl From<Vec<u8>> for rustls::msgs::handshake::DistinguishedName

source§

impl From<Vec<u8>> for rustls::msgs::handshake::DistinguishedName

source§

impl From<Vec<u8>> for PresharedKeyBinder

source§

impl From<Vec<u8>> for ProtocolName

source§

impl From<Vec<u8>> for ResponderId

source§

impl From<Vec<u8>> for Sct

source§

impl From<Vec<u32>> for rand::seq::index::IndexVec

source§

impl From<Vec<u32>> for rand::seq::index::IndexVec

source§

impl From<Vec<usize>> for rand::seq::index::IndexVec

source§

impl From<Vec<usize>> for rand::seq::index::IndexVec

source§

impl From<Vec<CertificateDer<'static>>> for Certificates<'static>

1.43.0 · source§

impl From<Vec<NonZero<u8>>> for CString

source§

impl From<EndOfInput> for webpki::error::Error

source§

impl From<EndOfInput> for ring::error::Unspecified

source§

impl From<EndOfInput> for aws_lc_rs::error::Unspecified

1.20.0 · source§

impl From<CString> for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::boxed::Box<CStr>

1.7.0 · source§

impl From<CString> for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::vec::Vec<u8>

1.24.0 · source§

impl From<CString> for Rc<CStr>

1.24.0 · source§

impl From<CString> for Arc<CStr>

1.0.0 · source§

impl From<NulError> for std::io::error::Error

1.62.0 · source§

impl From<Rc<str>> for Rc<[u8]>

1.62.0 · source§

impl From<Arc<str>> for Arc<[u8]>

source§

impl From<Arc<ServerConfig>> for TlsAcceptor

source§

impl From<Arc<ClientConfig>> for Client

source§

impl From<Arc<ClientConfig>> for TlsConnector

source§

impl From<Arc<ServerConfig>> for Server

source§

impl From<TryFromSliceError> for aws_lc_rs::error::Unspecified

source§

impl From<TryFromSliceError> for ring::error::Unspecified

source§

impl From<__m128> for Simd<f32, 4>

source§

impl From<__m128d> for Simd<f64, 2>

source§

impl From<__m128i> for Simd<i8, 16>

source§

impl From<__m128i> for Simd<i16, 8>

source§

impl From<__m128i> for Simd<i32, 4>

source§

impl From<__m128i> for Simd<i64, 2>

source§

impl From<__m128i> for Simd<isize, 2>

source§

impl From<__m128i> for Simd<u8, 16>

source§

impl From<__m128i> for Simd<u16, 8>

source§

impl From<__m128i> for Simd<u32, 4>

source§

impl From<__m128i> for Simd<u64, 2>

source§

impl From<__m128i> for Simd<usize, 2>

source§

impl From<__m256> for Simd<f32, 8>

source§

impl From<__m256d> for Simd<f64, 4>

source§

impl From<__m256i> for Simd<i8, 32>

source§

impl From<__m256i> for Simd<i16, 16>

source§

impl From<__m256i> for Simd<i32, 8>

source§

impl From<__m256i> for Simd<i64, 4>

source§

impl From<__m256i> for Simd<isize, 4>

source§

impl From<__m256i> for Simd<u8, 32>

source§

impl From<__m256i> for Simd<u16, 16>

source§

impl From<__m256i> for Simd<u32, 8>

source§

impl From<__m256i> for Simd<u64, 4>

source§

impl From<__m256i> for Simd<usize, 4>

source§

impl From<__m512> for Simd<f32, 16>

source§

impl From<__m512d> for Simd<f64, 8>

source§

impl From<__m512i> for Simd<i8, 64>

source§

impl From<__m512i> for Simd<i16, 32>

source§

impl From<__m512i> for Simd<i32, 16>

source§

impl From<__m512i> for Simd<i64, 8>

source§

impl From<__m512i> for Simd<isize, 8>

source§

impl From<__m512i> for Simd<u8, 64>

source§

impl From<__m512i> for Simd<u16, 32>

source§

impl From<__m512i> for Simd<u32, 16>

source§

impl From<__m512i> for Simd<u64, 8>

source§

impl From<__m512i> for Simd<usize, 8>

source§

impl From<Simd<f32, 4>> for __m128

source§

impl From<Simd<f32, 8>> for __m256

source§

impl From<Simd<f32, 16>> for __m512

source§

impl From<Simd<f64, 2>> for __m128d

source§

impl From<Simd<f64, 4>> for __m256d

source§

impl From<Simd<f64, 8>> for __m512d

source§

impl From<Simd<i8, 16>> for __m128i

source§

impl From<Simd<i8, 32>> for __m256i

source§

impl From<Simd<i8, 64>> for __m512i

source§

impl From<Simd<i16, 8>> for __m128i

source§

impl From<Simd<i16, 16>> for __m256i

source§

impl From<Simd<i16, 32>> for __m512i

source§

impl From<Simd<i32, 4>> for __m128i

source§

impl From<Simd<i32, 8>> for __m256i

source§

impl From<Simd<i32, 16>> for __m512i

source§

impl From<Simd<i64, 2>> for __m128i

source§

impl From<Simd<i64, 4>> for __m256i

source§

impl From<Simd<i64, 8>> for __m512i

source§

impl From<Simd<isize, 2>> for __m128i

source§

impl From<Simd<isize, 4>> for __m256i

source§

impl From<Simd<isize, 8>> for __m512i

source§

impl From<Simd<u8, 16>> for __m128i

source§

impl From<Simd<u8, 32>> for __m256i

source§

impl From<Simd<u8, 64>> for __m512i

source§

impl From<Simd<u16, 8>> for __m128i

source§

impl From<Simd<u16, 16>> for __m256i

source§

impl From<Simd<u16, 32>> for __m512i

source§

impl From<Simd<u32, 4>> for __m128i

source§

impl From<Simd<u32, 8>> for __m256i

source§

impl From<Simd<u32, 16>> for __m512i

source§

impl From<Simd<u64, 2>> for __m128i

source§

impl From<Simd<u64, 4>> for __m256i

source§

impl From<Simd<u64, 8>> for __m512i

source§

impl From<Simd<usize, 2>> for __m128i

source§

impl From<Simd<usize, 4>> for __m256i

source§

impl From<Simd<usize, 8>> for __m512i

1.16.0 · source§

impl From<Ipv4Addr> for core::net::ip_addr::IpAddr

1.1.0 · source§

impl From<Ipv4Addr> for u32

source§

impl From<Ipv4Addr> for rustls_pki_types::server_name::Ipv4Addr

source§

impl From<Ipv4Addr> for IpV4Address

1.16.0 · source§

impl From<Ipv6Addr> for core::net::ip_addr::IpAddr

1.26.0 · source§

impl From<Ipv6Addr> for u128

source§

impl From<Ipv6Addr> for rustls_pki_types::server_name::Ipv6Addr

source§

impl From<Ipv6Addr> for IpV6Address

source§

impl From<SocketAddrV4> for Endpoint

1.16.0 · source§

impl From<SocketAddrV4> for SocketAddr

source§

impl From<SocketAddrV4> for SocketAddressV4

source§

impl From<SocketAddrV4> for SockAddr

source§

impl From<SocketAddrV6> for Endpoint

1.16.0 · source§

impl From<SocketAddrV6> for SocketAddr

source§

impl From<SocketAddrV6> for SocketAddressV6

source§

impl From<SocketAddrV6> for SockAddr

source§

impl From<TryFromIntError> for rocket::serde::msgpack::Error

source§

impl From<TryFromIntError> for KeyRejected

source§

impl From<TryFromIntError> for aws_lc_rs::error::Unspecified

source§

impl From<TryFromIntError> for s2n_codec::unaligned::TryFromIntError

source§

impl From<TryFromIntError> for ValidationError

1.41.0 · source§

impl From<NonZero<i8>> for NonZero<i16>

1.41.0 · source§

impl From<NonZero<i8>> for NonZero<i32>

1.41.0 · source§

impl From<NonZero<i8>> for NonZero<i64>

1.41.0 · source§

impl From<NonZero<i8>> for NonZero<i128>

1.41.0 · source§

impl From<NonZero<i8>> for NonZero<isize>

1.41.0 · source§

impl From<NonZero<i16>> for NonZero<i32>

1.41.0 · source§

impl From<NonZero<i16>> for NonZero<i64>

1.41.0 · source§

impl From<NonZero<i16>> for NonZero<i128>

1.41.0 · source§

impl From<NonZero<i16>> for NonZero<isize>

1.41.0 · source§

impl From<NonZero<i32>> for NonZero<i64>

1.41.0 · source§

impl From<NonZero<i32>> for NonZero<i128>

1.41.0 · source§

impl From<NonZero<i64>> for NonZero<i128>

1.41.0 · source§

impl From<NonZero<u8>> for NonZero<i16>

1.41.0 · source§

impl From<NonZero<u8>> for NonZero<i32>

1.41.0 · source§

impl From<NonZero<u8>> for NonZero<i64>

1.41.0 · source§

impl From<NonZero<u8>> for NonZero<i128>

1.41.0 · source§

impl From<NonZero<u8>> for NonZero<isize>

1.41.0 · source§

impl From<NonZero<u8>> for NonZero<u16>

1.41.0 · source§

impl From<NonZero<u8>> for NonZero<u32>

1.41.0 · source§

impl From<NonZero<u8>> for NonZero<u64>

1.41.0 · source§

impl From<NonZero<u8>> for NonZero<u128>

1.41.0 · source§

impl From<NonZero<u8>> for NonZero<usize>

1.41.0 · source§

impl From<NonZero<u16>> for NonZero<i32>

1.41.0 · source§

impl From<NonZero<u16>> for NonZero<i64>

1.41.0 · source§

impl From<NonZero<u16>> for NonZero<i128>

1.41.0 · source§

impl From<NonZero<u16>> for NonZero<u32>

1.41.0 · source§

impl From<NonZero<u16>> for NonZero<u64>

1.41.0 · source§

impl From<NonZero<u16>> for NonZero<u128>

1.41.0 · source§

impl From<NonZero<u16>> for NonZero<usize>

1.41.0 · source§

impl From<NonZero<u32>> for NonZero<i64>

1.41.0 · source§

impl From<NonZero<u32>> for NonZero<i128>

1.41.0 · source§

impl From<NonZero<u32>> for NonZero<u64>

1.41.0 · source§

impl From<NonZero<u32>> for NonZero<u128>

source§

impl From<NonZero<u32>> for getrandom::error::Error

source§

impl From<NonZero<u32>> for getrandom::error::Error

source§

impl From<NonZero<u32>> for rand_core::error::Error

source§

impl From<NonZero<u32>> for rand_core::error::Error

1.41.0 · source§

impl From<NonZero<u64>> for NonZero<i128>

1.41.0 · source§

impl From<NonZero<u64>> for NonZero<u128>

source§

impl From<Alignment> for usize

source§

impl From<Alignment> for NonZero<usize>

source§

impl From<StreamResult> for Result<MZStatus, MZError>

1.20.0 · source§

impl From<OsString> for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::boxed::Box<OsStr>

1.24.0 · source§

impl From<OsString> for Rc<OsStr>

1.24.0 · source§

impl From<OsString> for Arc<OsStr>

1.0.0 · source§

impl From<OsString> for PathBuf

1.63.0 · source§

impl From<File> for OwnedFd

1.20.0 · source§

impl From<File> for Stdio

source§

impl From<File> for tokio::fs::file::File

source§

impl From<OpenOptions> for OpenOptions

source§

impl From<Error> for rocket::listener::Error

source§

impl From<Error> for rocket::tls::Error

Available on crate feature tls only.
source§

impl From<Error> for PEMError

source§

impl From<Error> for SerializeError

source§

impl From<Error> for Format

source§

impl From<Error> for AnyDelimiterCodecError

source§

impl From<Error> for LinesCodecError

source§

impl From<Error> for rocket::Error

source§

impl From<Error> for getrandom::error::Error

1.74.0 · source§

impl From<Stderr> for Stdio

1.74.0 · source§

impl From<Stdout> for Stdio

1.63.0 · source§

impl From<TcpListener> for OwnedFd

source§

impl From<TcpListener> for Socket

1.63.0 · source§

impl From<TcpStream> for OwnedFd

source§

impl From<TcpStream> for Socket

1.63.0 · source§

impl From<UdpSocket> for OwnedFd

source§

impl From<UdpSocket> for Socket

1.63.0 · source§

impl From<OwnedFd> for std::fs::File

1.63.0 · source§

impl From<OwnedFd> for TcpListener

1.63.0 · source§

impl From<OwnedFd> for TcpStream

1.63.0 · source§

impl From<OwnedFd> for UdpSocket

source§

impl From<OwnedFd> for PidFd

1.63.0 · source§

impl From<OwnedFd> for UnixDatagram

1.63.0 · source§

impl From<OwnedFd> for UnixListener

1.63.0 · source§

impl From<OwnedFd> for UnixStream

1.74.0 · source§

impl From<OwnedFd> for ChildStderr

Create a ChildStderr from the provided OwnedFd.

The provided file descriptor must point to a pipe with the CLOEXEC flag set.

1.74.0 · source§

impl From<OwnedFd> for ChildStdin

Create a ChildStdin from the provided OwnedFd.

The provided file descriptor must point to a pipe with the CLOEXEC flag set.

1.74.0 · source§

impl From<OwnedFd> for ChildStdout

Create a ChildStdout from the provided OwnedFd.

The provided file descriptor must point to a pipe with the CLOEXEC flag set.

1.63.0 · source§

impl From<OwnedFd> for Stdio

source§

impl From<OwnedFd> for Socket

source§

impl From<PidFd> for OwnedFd

1.63.0 · source§

impl From<UnixDatagram> for OwnedFd

source§

impl From<UnixDatagram> for Socket

1.63.0 · source§

impl From<UnixListener> for OwnedFd

source§

impl From<UnixListener> for Socket

1.63.0 · source§

impl From<UnixStream> for OwnedFd

source§

impl From<UnixStream> for Socket

source§

impl From<PathBuf> for Endpoint

1.20.0 · source§

impl From<PathBuf> for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::boxed::Box<Path>

1.24.0 · source§

impl From<PathBuf> for Rc<Path>

1.24.0 · source§

impl From<PathBuf> for Arc<Path>

1.14.0 · source§

impl From<PathBuf> for OsString

1.63.0 · source§

impl From<ChildStderr> for OwnedFd

1.20.0 · source§

impl From<ChildStderr> for Stdio

source§

impl From<ChildStderr> for Receiver

§Notes

The underlying pipe is not set to non-blocking.

1.63.0 · source§

impl From<ChildStdin> for OwnedFd

1.20.0 · source§

impl From<ChildStdin> for Stdio

source§

impl From<ChildStdin> for Sender

§Notes

The underlying pipe is not set to non-blocking.

1.63.0 · source§

impl From<ChildStdout> for OwnedFd

1.20.0 · source§

impl From<ChildStdout> for Stdio

source§

impl From<ChildStdout> for Receiver

§Notes

The underlying pipe is not set to non-blocking.

source§

impl From<Command> for Command

source§

impl From<ExitStatusError> for ExitStatus

1.24.0 · source§

impl From<RecvError> for RecvTimeoutError

1.24.0 · source§

impl From<RecvError> for TryRecvError

source§

impl From<Instant> for time::instant::Instant

source§

impl From<Instant> for tokio::time::instant::Instant

source§

impl From<SystemTime> for HttpDate

source§

impl From<SystemTime> for OffsetDateTime

source§

impl From<SystemTimeError> for rustls::error::Error

source§

impl From<SystemTimeError> for rustls::error::Error

source§

impl From<Aes128Enc> for Aes128

source§

impl From<Aes128Enc> for Aes128Dec

source§

impl From<Aes192Enc> for Aes192

source§

impl From<Aes192Enc> for Aes192Dec

source§

impl From<Aes256Enc> for Aes256

source§

impl From<Aes256Enc> for Aes256Dec

source§

impl From<KeyRejected> for aws_lc_rs::error::Unspecified

source§

impl From<Unspecified> for ()

source§

impl From<Unspecified> for KeyRejected

source§

impl From<Okm<'_, &'static Algorithm>> for aws_lc_rs::aead::quic::HeaderProtectionKey

source§

impl From<Okm<'_, &'static Algorithm>> for aws_lc_rs::aead::unbound_key::UnboundKey

source§

impl From<Okm<'_, &'static Algorithm>> for UnboundCipherKey

source§

impl From<Okm<'_, Algorithm>> for aws_lc_rs::hkdf::Prk

source§

impl From<Okm<'_, Algorithm>> for aws_lc_rs::hkdf::Salt

source§

impl From<Okm<'_, Algorithm>> for aws_lc_rs::hmac::Key

source§

impl From<Bytes> for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::vec::Vec<u8>

source§

impl From<BytesMut> for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::vec::Vec<u8>

source§

impl From<BytesMut> for bytes::bytes::Bytes

source§

impl From<OverflowError> for StreamCipherError

source§

impl From<Error> for rocket::listener::Error

source§

impl From<Error> for rocket::tls::Error

Available on crate feature tls only.
source§

impl From<Error> for rocket::Error

source§

impl From<Profile> for String

source§

impl From<Tag> for figment::value::value::Value

source§

impl From<Error> for std::io::error::Error

source§

impl From<Error> for rand_core::error::Error

source§

impl From<Reason> for u32

source§

impl From<Reason> for h2::error::Error

source§

impl From<StreamId> for u32

source§

impl From<MaxSizeReached> for http::error::Error

source§

impl From<HeaderName> for HeaderValue

source§

impl From<InvalidHeaderName> for http::error::Error

source§

impl From<InvalidHeaderValue> for http::error::Error

source§

impl From<InvalidMethod> for http::error::Error

source§

impl From<InvalidStatusCode> for http::error::Error

source§

impl From<StatusCode> for u16

source§

impl From<Authority> for http::uri::Uri

Convert an Authority into a Uri.

source§

impl From<PathAndQuery> for http::uri::Uri

Convert a PathAndQuery into a Uri.

source§

impl From<InvalidUri> for http::error::Error

source§

impl From<InvalidUriParts> for http::error::Error

source§

impl From<Uri> for Builder

source§

impl From<Uri> for Parts

Convert a Uri into Parts

source§

impl From<HttpDate> for SystemTime

source§

impl From<Error> for std::io::error::Error

source§

impl From<ReasonPhrase> for bytes::bytes::Bytes

source§

impl From<Token> for usize

source§

impl From<KeyRejected> for ring::error::Unspecified

source§

impl From<Okm<'_, &'static Algorithm>> for ring::aead::quic::HeaderProtectionKey

source§

impl From<Okm<'_, &'static Algorithm>> for ring::aead::unbound_key::UnboundKey

source§

impl From<Okm<'_, Algorithm>> for ring::hkdf::Prk

source§

impl From<Okm<'_, Algorithm>> for ring::hkdf::Salt

source§

impl From<Okm<'_, Algorithm>> for ring::hmac::Key

source§

impl From<Okm<'_, PayloadU8Len>> for PayloadU8

source§

impl From<MarkerReadError> for rocket::serde::msgpack::Error

source§

impl From<ByteBuf> for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::vec::Vec<u8>

source§

impl From<Mode> for u32

source§

impl From<Errno> for std::io::error::Error

source§

impl From<Ipv4Addr> for core::net::ip_addr::Ipv4Addr

source§

impl From<Ipv6Addr> for core::net::ip_addr::Ipv6Addr

source§

impl From<OwnedCertRevocationList> for CertRevocationList<'_>

source§

impl From<ClientConnection> for rustls::conn::connection::Connection

source§

impl From<ClientConfig> for Client

source§

impl From<ClientConnection> for rustls::conn::Connection

source§

impl From<ConnectionCommon<ServerConnectionData>> for AcceptedAlert

source§

impl From<InsufficientSizeError> for EncodeError

source§

impl From<InsufficientSizeError> for EncryptError

source§

impl From<UnsupportedOperationError> for rustls::error::Error

source§

impl From<OtherError> for rustls::error::Error

source§

impl From<u24> for usize

source§

impl From<Message> for rustls::msgs::message::PlainMessage

source§

impl From<Message<'_>> for rustls::msgs::message::PlainMessage

source§

impl From<ClientConnection> for rustls::quic::connection::Connection

source§

impl From<ServerConnection> for rustls::quic::connection::Connection

source§

impl From<ClientConnection> for rustls::quic::Connection

source§

impl From<ServerConnection> for rustls::quic::Connection

source§

impl From<GetRandomFailed> for rustls::error::Error

source§

impl From<ServerConnection> for rustls::conn::connection::Connection

source§

impl From<ServerConfig> for Server

source§

impl From<ServerConnection> for rustls::conn::Connection

source§

impl From<i24> for i8

source§

impl From<i24> for i16

source§

impl From<i24> for i32

source§

impl From<i24> for u8

source§

impl From<i24> for u16

source§

impl From<i48> for i8

source§

impl From<i48> for i16

source§

impl From<i48> for i32

source§

impl From<i48> for i64

source§

impl From<i48> for u8

source§

impl From<i48> for u16

source§

impl From<i48> for u32

source§

impl From<u24> for u8

source§

impl From<u24> for u16

source§

impl From<u24> for u32

source§

impl From<u24> for u64

source§

impl From<u48> for u8

source§

impl From<u48> for u16

source§

impl From<u48> for u32

source§

impl From<u48> for u64

source§

impl From<I16> for i16

source§

impl From<I32> for i32

source§

impl From<I64> for i64

source§

impl From<I128> for i128

source§

impl From<U16> for u16

source§

impl From<U32> for u32

source§

impl From<U64> for u64

source§

impl From<U128> for u128

source§

impl From<Error> for u64

source§

impl From<Error> for VarInt

source§

impl From<InitialId> for PeerId

source§

impl From<InitialId> for UnboundedId

source§

impl From<LocalId> for UnboundedId

source§

impl From<LocalId> for InitialSourceConnectionId

source§

impl From<PeerId> for UnboundedId

source§

impl From<Error> for ProcessingError

source§

impl From<Error> for s2n_quic_core::transport::error::Error

Implements conversion from TLS errors See Error::crypto_error for more details

source§

impl From<PlatformRxError> for std::io::error::Error

source§

impl From<PlatformTxError> for std::io::error::Error

source§

impl From<IpV4Address> for IpAddress

source§

impl From<IpV4Address> for core::net::ip_addr::Ipv4Addr

source§

impl From<IpV4Address> for [u8; 4]

source§

impl From<SocketAddressV4> for SocketAddr

source§

impl From<SocketAddressV4> for SocketAddress

source§

impl From<SocketAddressV4> for SocketAddrV4

source§

impl From<SocketAddressV4> for s2n_quic_core::path::LocalAddress

source§

impl From<SocketAddressV4> for s2n_quic_core::path::RemoteAddress

source§

impl From<IpV6Address> for IpAddress

source§

impl From<IpV6Address> for core::net::ip_addr::Ipv6Addr

source§

impl From<IpV6Address> for [u8; 16]

source§

impl From<IpV6Address> for [u16; 8]

source§

impl From<SocketAddressV6> for SocketAddr

source§

impl From<SocketAddressV6> for SocketAddress

source§

impl From<SocketAddressV6> for SocketAddrV6

source§

impl From<SocketAddressV6> for s2n_quic_core::path::LocalAddress

source§

impl From<SocketAddressV6> for s2n_quic_core::path::RemoteAddress

source§

impl From<BaseMtu> for u16

source§

impl From<BaseMtu> for usize

source§

impl From<InitialMtu> for u16

source§

impl From<InitialMtu> for usize

source§

impl From<MaxMtu> for u16

source§

impl From<MaxMtu> for usize

source§

impl From<LocalAddress> for s2n_quic_core::xdp::path::LocalAddress

source§

impl From<RemoteAddress> for s2n_quic_core::xdp::path::RemoteAddress

source§

impl From<StreamId> for u64

source§

impl From<StreamId> for VarInt

source§

impl From<Response> for ()

source§

impl From<Response> for ()

source§

impl From<Response> for ()

source§

impl From<Error> for s2n_quic_core::connection::error::Error

source§

impl From<Error> for ProcessingError

source§

impl From<Error> for StreamError

source§

impl From<InitialMaxStreamsBidi> for LocalBidirectional

source§

impl From<MaxAckDelay> for Duration

source§

impl From<MaxIdleTimeout> for Duration

source§

impl From<VarInt> for u64

source§

impl From<VarInt> for s2n_quic_core::application::error::Error

source§

impl From<VarIntError> for s2n_quic_core::transport::error::Error

Implements conversion from crypto errors See Error::crypto_error for more details

source§

impl From<VarIntError> for ValidationError

source§

impl From<LocalAddress> for s2n_quic_core::path::LocalAddress

source§

impl From<RemoteAddress> for s2n_quic_core::path::RemoteAddress

source§

impl From<MaxSegments> for usize

source§

impl From<MaxSegments> for Gso

source§

impl From<Stream> for ReceiveStream

source§

impl From<Stream> for s2n_quic_transport::stream::api::SendStream

source§

impl From<BidirectionalStream> for s2n_quic::stream::Stream

source§

impl From<BidirectionalStream> for LocalStream

source§

impl From<BidirectionalStream> for PeerStream

source§

impl From<ReceiveStream> for s2n_quic::stream::Stream

source§

impl From<ReceiveStream> for PeerStream

§

impl From<ReceiveStream> for RecvStream

source§

impl From<SendStream> for s2n_quic::stream::Stream

source§

impl From<SendStream> for LocalStream

source§

impl From<Error> for std::io::error::Error

source§

impl From<Map<String, Value>> for rocket::serde::json::Value

source§

impl From<Number> for rocket::serde::json::Value

source§

impl From<Hash128> for u128

source§

impl From<Socket> for TcpListener

source§

impl From<Socket> for TcpStream

source§

impl From<Socket> for UdpSocket

source§

impl From<Socket> for OwnedFd

source§

impl From<Socket> for UnixDatagram

source§

impl From<Socket> for UnixListener

source§

impl From<Socket> for UnixStream

source§

impl From<Domain> for i32

source§

impl From<Protocol> for i32

source§

impl From<Type> for i32

source§

impl From<Choice> for bool

source§

impl From<PathPersistError> for std::io::error::Error

source§

impl From<PathPersistError> for TempPath

source§

impl From<ComponentRange> for time::error::Error

source§

impl From<ComponentRange> for TryFromParsed

source§

impl From<ConversionRange> for time::error::Error

source§

impl From<DifferentVariant> for time::error::Error

source§

impl From<InvalidVariant> for time::error::Error

source§

impl From<Instant> for std::time::Instant

source§

impl From<OffsetDateTime> for ASN1Time

source§

impl From<OffsetDateTime> for SystemTime

source§

impl From<Elapsed> for std::io::error::Error

source§

impl From<JoinError> for std::io::error::Error

source§

impl From<SignalKind> for i32

source§

impl From<Elapsed> for std::io::error::Error

source§

impl From<Instant> for std::time::Instant

source§

impl From<Map<String, Value>> for toml::value::Value

source§

impl From<Date> for toml_edit::value::Value

source§

impl From<Date> for Datetime

source§

impl From<Datetime> for toml::value::Value

source§

impl From<Datetime> for toml_edit::value::Value

source§

impl From<Time> for toml_edit::value::Value

source§

impl From<Time> for Datetime

source§

impl From<Array> for toml_edit::value::Value

source§

impl From<Error> for TomlError

source§

impl From<DocumentMut> for Deserializer

source§

impl From<TomlError> for toml_edit::ser::Error

source§

impl From<TomlError> for toml_edit::de::Error

source§

impl From<InlineTable> for toml_edit::value::Value

source§

impl From<InternalString> for toml_edit::value::Value

source§

impl From<InternalString> for toml_edit::key::Key

source§

impl From<InternalString> for RawString

source§

impl From<Table> for DocumentMut

source§

impl From<Level> for tracing_core::metadata::LevelFilter

source§

impl From<LevelFilter> for Option<Level>

source§

impl From<Current> for Option<Id>

source§

impl From<Span> for Option<Id>

source§

impl From<Error> for std::io::error::Error

source§

impl From<Error> for rand_core::error::Error

source§

impl From<ChaCha8Core> for rand_chacha::chacha::ChaCha8Rng

source§

impl From<ChaCha8Core> for rand_chacha::chacha::ChaCha8Rng

source§

impl From<ChaCha12Core> for rand_chacha::chacha::ChaCha12Rng

source§

impl From<ChaCha12Core> for rand_chacha::chacha::ChaCha12Rng

source§

impl From<ChaCha20Core> for rand_chacha::chacha::ChaCha20Rng

source§

impl From<ChaCha20Core> for rand_chacha::chacha::ChaCha20Rng

source§

impl From<Error> for std::io::error::Error

source§

impl From<Error> for std::io::error::Error

source§

impl From<vec128_storage> for [u32; 4]

source§

impl From<vec128_storage> for [u64; 2]

source§

impl From<vec128_storage> for [u128; 1]

source§

impl From<vec256_storage> for [u32; 8]

source§

impl From<vec256_storage> for [u64; 4]

source§

impl From<vec256_storage> for [u128; 2]

source§

impl From<vec512_storage> for [u32; 16]

source§

impl From<vec512_storage> for [u64; 8]

source§

impl From<vec512_storage> for [u128; 4]

source§

impl From<AeadCtx> for aws_lc_rs::aead::unbound_key::UnboundKey

source§

impl From<AeadDirection> for u32

source§

impl From<BigEndian<u32>> for u32

source§

impl From<BigEndian<u32>> for u32

source§

impl From<BigEndian<u32>> for Nonce

source§

impl From<BigEndian<u32>> for [u8; 4]

source§

impl From<BigEndian<u64>> for u64

source§

impl From<ByteStr> for bytes::bytes::Bytes

source§

impl From<CertificateStatusType> for u8

source§

impl From<ClientCertificateType> for u8

§

impl From<Code> for u64

§

impl From<Code> for Error

source§

impl From<Component> for Component

source§

impl From<Custom> for bytes::bytes::Bytes

source§

impl From<DataFlags> for u8

source§

impl From<ECCurveType> for u8

source§

impl From<ECPointFormat> for u8

source§

impl From<Error> for InvalidFormatDescription

§

impl From<Error> for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::boxed::Box<dyn Error + Send>

source§

impl From<Error> for h2::error::Error

§

impl From<Error> for Error

§

impl From<Error> for Error

source§

impl From<ErrorKind> for InvalidUri

source§

impl From<ErrorKind> for InvalidUriParts

source§

impl From<ExtensionType> for u16

§

impl From<FrameStreamError> for Error

source§

impl From<GetRandomFailed> for rustls::error::Error

§

impl From<HeaderError> for Error

§

impl From<HeaderField> for String

source§

impl From<HeaderKeyPair> for HandshakeHeaderKey

source§

impl From<HeaderKeyPair> for InitialHeaderKey

source§

impl From<HeaderKeyPair> for OneRttHeaderKey

source§

impl From<HeadersFlag> for u8

source§

impl From<HeartbeatMessageType> for u8

source§

impl From<HeartbeatMode> for u8

source§

impl From<HourBase> for bool

source§

impl From<InternalConnectionId> for u64

§

impl From<InvalidStreamId> for Error

source§

impl From<Item<'_>> for OwnedFormatItem

source§

impl From<KeyUpdateRequest> for u8

source§

impl From<Kind> for tokio::time::error::Error

source§

impl From<LengthMeasurement> for usize

source§

impl From<LittleEndian<u32>> for u32

source§

impl From<LittleEndian<u64>> for u64

source§

impl From<MonthCaseSensitive> for bool

source§

impl From<MonthRepr> for MonthRepr

source§

impl From<NamedCurve> for u16

source§

impl From<PSKKeyExchangeMode> for u8

source§

impl From<Padding> for Padding

source§

impl From<ParserNumber> for serde_json::number::Number

source§

impl From<PeerIdRegistrationError> for s2n_quic_core::transport::error::Error

source§

impl From<PeriodCase> for bool

source§

impl From<PeriodCaseSensitive> for bool

source§

impl From<ProfileTag> for Option<Profile>

source§

impl From<PushPromiseFlag> for u8

§

impl From<ReadError> for Arc<dyn Error>

source§

impl From<Result> for Result<(), Unspecified>

source§

impl From<RootArcs> for u8

source§

impl From<SendError> for h2::error::Error

§

impl From<SendStreamError> for Arc<dyn Error>

source§

impl From<ServerNameType> for u8

§

impl From<SessionId> for StreamId

source§

impl From<SettingsFlags> for u8

source§

impl From<SignBehavior> for bool

source§

impl From<SpawnError> for std::io::error::Error

source§

impl From<State> for usize

source§

impl From<StreamId> for u32

source§

impl From<SubsecondDigits> for SubsecondDigits

source§

impl From<Tag> for u8

source§

impl From<Tag> for u8

source§

impl From<Tag> for u8

source§

impl From<Tag> for u8

source§

impl From<Tag> for usize

source§

impl From<Tag> for usize

source§

impl From<Tag> for usize

source§

impl From<Tag> for usize

source§

impl From<UnixTimestampPrecision> for UnixTimestampPrecision

source§

impl From<UserError> for h2::error::Error

§

impl From<VarInt> for u64

§

impl From<VarInt> for StreamId

source§

impl From<WeekNumberRepr> for WeekNumberRepr

source§

impl From<WeekdayCaseSensitive> for bool

source§

impl From<WeekdayOneIndexed> for bool

source§

impl From<WeekdayRepr> for WeekdayRepr

source§

impl From<Window> for isize

source§

impl From<Writer> for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::boxed::Box<[u8]>

source§

impl From<YearBase> for bool

source§

impl From<YearRepr> for YearRepr

1.17.0 · source§

impl From<[u8; 4]> for core::net::ip_addr::IpAddr

1.9.0 · source§

impl From<[u8; 4]> for core::net::ip_addr::Ipv4Addr

source§

impl From<[u8; 4]> for IpV4Address

source§

impl From<[u8; 12]> for Iv

1.17.0 · source§

impl From<[u8; 16]> for core::net::ip_addr::IpAddr

1.9.0 · source§

impl From<[u8; 16]> for core::net::ip_addr::Ipv6Addr

source§

impl From<[u8; 16]> for ring::aead::Tag

source§

impl From<[u8; 16]> for IpV6Address

source§

impl From<[u8; 16]> for Token

source§

impl From<[u8; 20]> for InitialId

source§

impl From<[u8; 20]> for LocalId

source§

impl From<[u8; 20]> for PeerId

source§

impl From<[u8; 20]> for UnboundedId

source§

impl From<[u8; 32]> for AeadKey

source§

impl From<[u8; 32]> for rustls::msgs::handshake::Random

source§

impl From<[u8; 32]> for rustls::msgs::handshake::Random

1.17.0 · source§

impl From<[u16; 8]> for core::net::ip_addr::IpAddr

1.16.0 · source§

impl From<[u16; 8]> for core::net::ip_addr::Ipv6Addr

source§

impl From<[u16; 8]> for rustls_pki_types::server_name::Ipv6Addr

source§

impl From<[u16; 8]> for IpV6Address

source§

impl From<[u32; 4]> for vec128_storage

source§

impl From<[u64; 4]> for vec256_storage

source§

impl From<u24> for usize

source§

impl<'a> From<&'a IpAddr> for IpAddrRef<'a>

§

impl<'a> From<&'a str> for &'a RawStr

source§

impl<'a> From<&'a str> for &'a UncasedStr

source§

impl<'a> From<&'a str> for &'a BStr

source§

impl<'a> From<&'a str> for &'a winnow::stream::Bytes

§

impl<'a> From<&'a str> for ProxyProto<'a>

1.0.0 · source§

impl<'a> From<&'a str> for Cow<'a, str>

source§

impl<'a> From<&'a str> for InlinableString

source§

impl<'a> From<&'a str> for toml::value::Value

source§

impl<'a> From<&'a str> for Cookie<'a>

source§

impl<'a> From<&'a str> for BmpString<'a>

source§

impl<'a> From<&'a str> for GeneralString<'a>

source§

impl<'a> From<&'a str> for GraphicString<'a>

source§

impl<'a> From<&'a str> for Ia5String<'a>

source§

impl<'a> From<&'a str> for NumericString<'a>

source§

impl<'a> From<&'a str> for ObjectDescriptor<'a>

source§

impl<'a> From<&'a str> for PrintableString<'a>

source§

impl<'a> From<&'a str> for TeletexString<'a>

source§

impl<'a> From<&'a str> for UniversalString<'a>

source§

impl<'a> From<&'a str> for Utf8String<'a>

source§

impl<'a> From<&'a str> for VideotexString<'a>

source§

impl<'a> From<&'a str> for VisibleString<'a>

source§

impl<'a> From<&'a str> for BytesMut

source§

impl<'a> From<&'a str> for h2::ext::Protocol

source§

impl<'a> From<&'a str> for hyper::ext::Protocol

source§

impl<'a> From<&'a str> for InlineString

Create a InlineString from the given &str.

§Panics

If the given string’s size is greater than INLINE_STRING_CAPACITY, this method panics.

source§

impl<'a> From<&'a str> for Text<'a>

§

impl<'a> From<&'a RawStr> for Cow<'a, RawStr>

1.28.0 · source§

impl<'a> From<&'a String> for Cow<'a, str>

1.28.0 · source§

impl<'a> From<&'a CString> for Cow<'a, CStr>

1.28.0 · source§

impl<'a> From<&'a CStr> for Cow<'a, CStr>

1.28.0 · source§

impl<'a> From<&'a OsStr> for Cow<'a, OsStr>

1.28.0 · source§

impl<'a> From<&'a OsString> for Cow<'a, OsStr>

1.6.0 · source§

impl<'a> From<&'a Path> for Cow<'a, Path>

1.28.0 · source§

impl<'a> From<&'a PathBuf> for Cow<'a, Path>

source§

impl<'a> From<&'a HeaderName> for HeaderName

source§

impl<'a> From<&'a HeaderValue> for HeaderValue

source§

impl<'a> From<&'a Method> for Method

source§

impl<'a> From<&'a StatusCode> for StatusCode

source§

impl<'a> From<&'a IpV4Address> for IpAddressRef<'a>

source§

impl<'a> From<&'a IpV6Address> for IpAddressRef<'a>

source§

impl<'a> From<&'a Current> for Option<&'a Id>

source§

impl<'a> From<&'a Current> for Option<&'static Metadata<'static>>

source§

impl<'a> From<&'a Current> for Option<Id>

source§

impl<'a> From<&'a Id> for Option<Id>

source§

impl<'a> From<&'a EnteredSpan> for Option<&'a Id>

source§

impl<'a> From<&'a EnteredSpan> for Option<Id>

source§

impl<'a> From<&'a Span> for Option<&'a Id>

source§

impl<'a> From<&'a Span> for Option<Id>

source§

impl<'a> From<&'a BStr> for &'a [u8]

source§

impl<'a> From<&'a Bytes> for &'a [u8]

source§

impl<'a> From<&'a vec128_storage> for &'a [u32; 4]

source§

impl<'a> From<&'a [BorrowedFormatItem<'_>]> for BorrowedFormatItem<'a>

source§

impl<'a> From<&'a [u8]> for &'a BStr

source§

impl<'a> From<&'a [u8]> for &'a winnow::stream::Bytes

source§

impl<'a> From<&'a [u8]> for OutboundChunks<'a>

source§

impl<'a> From<&'a [u8]> for Chunk<'a>

source§

impl<'a> From<&'a [u8]> for CertificateDer<'a>

source§

impl<'a> From<&'a [u8]> for ECPoint<'a>

source§

impl<'a> From<&'a [u8]> for OctetString<'a>

source§

impl<'a> From<&'a [u8]> for untrusted::input::Input<'a>

source§

impl<'a> From<&'a [u8]> for untrusted::Input<'a>

source§

impl<'a> From<&'a [u8]> for Ciphertext<'a>

source§

impl<'a> From<&'a [u8]> for BytesMut

source§

impl<'a> From<&'a [u8]> for rmp::decode::bytes::Bytes<'a>

source§

impl<'a> From<&'a [u8]> for CertificateRevocationListDer<'a>

source§

impl<'a> From<&'a [u8]> for CertificateSigningRequestDer<'a>

source§

impl<'a> From<&'a [u8]> for Der<'a>

source§

impl<'a> From<&'a [u8]> for EchConfigListBytes<'a>

source§

impl<'a> From<&'a [u8]> for PrivatePkcs1KeyDer<'a>

source§

impl<'a> From<&'a [u8]> for PrivatePkcs8KeyDer<'a>

source§

impl<'a> From<&'a [u8]> for PrivateSec1KeyDer<'a>

source§

impl<'a> From<&'a [u8]> for DecoderBuffer<'a>

source§

impl<'a> From<&'a mut [u8]> for &'a mut UninitSlice

source§

impl<'a> From<&'a mut [u8]> for DecoderBuffer<'a>

source§

impl<'a> From<&'a mut [u8]> for DecoderBufferMut<'a>

source§

impl<'a> From<&'a mut [MaybeUninit<u8>]> for &'a mut UninitSlice

1.6.0 · source§

impl<'a> From<&str> for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::boxed::Box<dyn Error + 'a>

1.0.0 · source§

impl<'a> From<&str> for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::boxed::Box<dyn Error + Sync + Send + 'a>

source§

impl<'a> From<(&'a str, &'a str)> for ValueField<'a>

source§

impl<'a> From<(Status, Box<dyn Error + Send>)> for rocket::form::error::ErrorKind<'a>

source§

impl<'a> From<BerObjectContent<'a>> for BerObject<'a>

Build a DER object from a BerObjectContent.

source§

impl<'a> From<Cow<'a, str>> for rocket::serde::json::Value

source§

impl<'a> From<Cow<'a, str>> for Cookie<'a>

1.14.0 · source§

impl<'a> From<Cow<'a, str>> for String

1.28.0 · source§

impl<'a> From<Cow<'a, CStr>> for CString

1.28.0 · source§

impl<'a> From<Cow<'a, OsStr>> for OsString

1.28.0 · source§

impl<'a> From<Cow<'a, Path>> for PathBuf

source§

impl<'a> From<Error> for rocket::form::Error<'a>

source§

impl<'a> From<DecodeStringError<'a>> for rocket::serde::msgpack::Error

source§

impl<'a> From<IpAddrRef<'a>> for &'a str

source§

impl<'a> From<IpAddrRef<'a>> for &'a [u8]

source§

impl<'a> From<IpAddrRef<'a>> for webpki::subject_name::ip_address::IpAddr

source§

impl<'a> From<IpAddrRef<'a>> for SubjectNameRef<'a>

source§

impl<'a> From<SocketAddressRef<'a>> for SocketAddr

§

impl<'a> From<Absolute<'a>> for rocket::http::uri::Uri<'a>

§

impl<'a> From<Absolute<'a>> for Reference<'a>

§

impl<'a> From<Asterisk> for rocket::http::uri::Uri<'a>

§

impl<'a> From<Authority<'a>> for rocket::http::uri::Uri<'a>

§

impl<'a> From<Authority<'a>> for Host<'a>

§

impl<'a> From<Authority<'a>> for Reference<'a>

§

impl<'a> From<Origin<'a>> for rocket::http::uri::Uri<'a>

§

impl<'a> From<Origin<'a>> for Reference<'a>

§

impl<'a> From<Reference<'a>> for rocket::http::uri::Uri<'a>

source§

impl<'a> From<Oid<'a>> for BerObject<'a>

Build a DER object from an OID.

source§

impl<'a> From<X509Name<'a>> for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::vec::Vec<RelativeDistinguishedName<'a>>

source§

impl<'a> From<Box<[Item<'a>]>> for OwnedFormatItem

source§

impl<'a> From<Box<dyn Error + Send>> for rocket::form::error::ErrorKind<'a>

source§

impl<'a> From<Box<dyn Future<Output = ()> + 'a>> for LocalFutureObj<'a, ()>

source§

impl<'a> From<Box<dyn Future<Output = ()> + Send + 'a>> for FutureObj<'a, ()>

source§

impl<'a> From<ParseBoolError> for rocket::form::error::ErrorKind<'a>

source§

impl<'a> From<Utf8Error> for rocket::form::error::ErrorKind<'a>

1.0.0 · source§

impl<'a> From<String> for Cow<'a, str>

1.6.0 · source§

impl<'a> From<String> for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::boxed::Box<dyn Error + 'a>

1.0.0 · source§

impl<'a> From<String> for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::boxed::Box<dyn Error + Sync + Send + 'a>

source§

impl<'a> From<Vec<u8>> for CertificateDer<'a>

source§

impl<'a> From<Vec<u8>> for CertificateRevocationListDer<'a>

source§

impl<'a> From<Vec<u8>> for CertificateSigningRequestDer<'a>

source§

impl<'a> From<Vec<u8>> for EchConfigListBytes<'a>

source§

impl<'a> From<Vec<u8>> for PrivatePkcs1KeyDer<'a>

source§

impl<'a> From<Vec<u8>> for PrivatePkcs8KeyDer<'a>

source§

impl<'a> From<Vec<u8>> for PrivateSec1KeyDer<'a>

1.28.0 · source§

impl<'a> From<CString> for Cow<'a, CStr>

source§

impl<'a> From<AddrParseError> for rocket::form::error::ErrorKind<'a>

source§

impl<'a> From<ParseFloatError> for rocket::form::error::ErrorKind<'a>

source§

impl<'a> From<ParseIntError> for rocket::form::error::ErrorKind<'a>

source§

impl<'a> From<Pin<Box<dyn Future<Output = ()> + 'a>>> for LocalFutureObj<'a, ()>

source§

impl<'a> From<Pin<Box<dyn Future<Output = ()> + Send + 'a>>> for FutureObj<'a, ()>

1.28.0 · source§

impl<'a> From<OsString> for Cow<'a, OsStr>

source§

impl<'a> From<Error> for rocket::form::error::ErrorKind<'a>

1.6.0 · source§

impl<'a> From<PathBuf> for Cow<'a, Path>

source§

impl<'a> From<Bytes> for Chunk<'a>

source§

impl<'a> From<BytesMut> for Chunk<'a>

source§

impl<'a> From<CookieBuilder<'a>> for Cookie<'a>

source§

impl<'a> From<Name<'a>> for &'a str

source§

impl<'a> From<PercentDecode<'a>> for Cow<'a, [u8]>

source§

impl<'a> From<PercentEncode<'a>> for Cow<'a, str>

source§

impl<'a> From<PrivatePkcs1KeyDer<'a>> for PrivateKeyDer<'a>

source§

impl<'a> From<PrivatePkcs8KeyDer<'a>> for PrivateKeyDer<'a>

source§

impl<'a> From<PrivateSec1KeyDer<'a>> for PrivateKeyDer<'a>

source§

impl<'a> From<Cert<'a>> for rustls_pki_types::TrustAnchor<'a>

source§

impl<'a> From<Cert<'a>> for webpki::trust_anchor::TrustAnchor<'a>

source§

impl<'a> From<BorrowedCertRevocationList<'a>> for CertRevocationList<'a>

source§

impl<'a> From<DnsNameRef<'a>> for &'a str

source§

impl<'a> From<DnsNameRef<'a>> for SubjectNameRef<'a>

source§

impl<'a> From<DecoderBufferMut<'a>> for DecoderBuffer<'a>

source§

impl<'a> From<Error> for ConnectionClose<'a>

source§

impl<'a> From<ConnectionClose<'a>> for s2n_quic_core::connection::error::Error

source§

impl<'a> From<ConnectionClose<'a>> for StreamError

source§

impl<'a> From<Crypto<DecoderBuffer<'a>>> for Crypto<&'a [u8]>

source§

impl<'a> From<Crypto<DecoderBufferMut<'a>>> for Crypto<&'a [u8]>

source§

impl<'a> From<Crypto<DecoderBufferMut<'a>>> for Crypto<&'a mut [u8]>

source§

impl<'a> From<Datagram<DecoderBuffer<'a>>> for Datagram<&'a [u8]>

source§

impl<'a> From<Datagram<DecoderBufferMut<'a>>> for Datagram<&'a [u8]>

source§

impl<'a> From<Datagram<DecoderBufferMut<'a>>> for Datagram<&'a mut [u8]>

source§

impl<'a> From<PathChallenge<'a>> for PathResponse<'a>

source§

impl<'a> From<Stream<DecoderBuffer<'a>>> for s2n_quic_core::frame::stream::Stream<&'a [u8]>

source§

impl<'a> From<Stream<DecoderBufferMut<'a>>> for s2n_quic_core::frame::stream::Stream<&'a [u8]>

source§

impl<'a> From<Stream<DecoderBufferMut<'a>>> for s2n_quic_core::frame::stream::Stream<&'a mut [u8]>

source§

impl<'a> From<AttemptBuilder<'a>> for Attempt<'a>

source§

impl<'a> From<PacketInfoBuilder<'a>> for PacketInfo<'a>

source§

impl<'a> From<Error> for ConnectionClose<'a>

source§

impl<'a> From<Buffer<'a, Curve25519SeedBinType>> for Curve25519SeedBin<'a>

source§

impl<'a> From<Buffer<'a, EcPrivateKeyBinType>> for EcPrivateKeyBin<'a>

source§

impl<'a> From<Buffer<'a, EcPrivateKeyRfc5915DerType>> for EcPrivateKeyRfc5915Der<'a>

source§

impl<'a> From<Buffer<'a, EncapsulationKeyBytesType>> for EncapsulationKeyBytes<'a>

source§

impl<'a> From<Buffer<'a, Pkcs8V1DerType>> for Pkcs8V1Der<'a>

source§

impl<'a> From<Buffer<'a, PublicKeyX509DerType>> for PublicKeyX509Der<'a>

source§

impl<'a> From<GeneralDnsNameRef<'a>> for &'a str

source§

impl<'a> From<Slice<'a>> for untrusted::input::Input<'a>

source§

impl<'a> From<WildcardDnsNameRef<'a>> for &'a str

source§

impl<'a, 'b> From<&'a AttributeTypeAndValue<'b>> for &'a [u8]

1.22.0 · source§

impl<'a, 'b> From<Cow<'b, str>> for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::boxed::Box<dyn Error + 'a>

1.22.0 · source§

impl<'a, 'b> From<Cow<'b, str>> for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::boxed::Box<dyn Error + Sync + Send + 'a>

source§

impl<'a, 'v: 'a> From<&'static [Cow<'v, str>]> for rocket::form::error::ErrorKind<'a>

source§

impl<'a, 'v: 'a> From<Vec<Cow<'v, str>>> for rocket::form::error::ErrorKind<'a>

source§

impl<'a, 'v: 'a, const N: usize> From<&'static [Cow<'v, str>; N]> for rocket::form::error::ErrorKind<'a>

source§

impl<'a, A> From<&'a [<A as Array>::Item]> for SmallVec<A>
where A: Array, <A as Array>::Item: Clone,

source§

impl<'a, AckRanges, Data> From<Ack<AckRanges>> for Frame<'a, AckRanges, Data>

source§

impl<'a, AckRanges, Data> From<ConnectionClose<'a>> for Frame<'a, AckRanges, Data>

source§

impl<'a, AckRanges, Data> From<Crypto<Data>> for Frame<'a, AckRanges, Data>

source§

impl<'a, AckRanges, Data> From<DataBlocked> for Frame<'a, AckRanges, Data>

source§

impl<'a, AckRanges, Data> From<Datagram<Data>> for Frame<'a, AckRanges, Data>

source§

impl<'a, AckRanges, Data> From<HandshakeDone> for Frame<'a, AckRanges, Data>

source§

impl<'a, AckRanges, Data> From<MaxData> for Frame<'a, AckRanges, Data>

source§

impl<'a, AckRanges, Data> From<MaxStreamData> for Frame<'a, AckRanges, Data>

source§

impl<'a, AckRanges, Data> From<MaxStreams> for Frame<'a, AckRanges, Data>

source§

impl<'a, AckRanges, Data> From<NewConnectionId<'a>> for Frame<'a, AckRanges, Data>

source§

impl<'a, AckRanges, Data> From<NewToken<'a>> for Frame<'a, AckRanges, Data>

source§

impl<'a, AckRanges, Data> From<Padding> for Frame<'a, AckRanges, Data>

source§

impl<'a, AckRanges, Data> From<PathChallenge<'a>> for Frame<'a, AckRanges, Data>

source§

impl<'a, AckRanges, Data> From<PathResponse<'a>> for Frame<'a, AckRanges, Data>

source§

impl<'a, AckRanges, Data> From<Ping> for Frame<'a, AckRanges, Data>

source§

impl<'a, AckRanges, Data> From<ResetStream> for Frame<'a, AckRanges, Data>

source§

impl<'a, AckRanges, Data> From<RetireConnectionId> for Frame<'a, AckRanges, Data>

source§

impl<'a, AckRanges, Data> From<StopSending> for Frame<'a, AckRanges, Data>

source§

impl<'a, AckRanges, Data> From<Stream<Data>> for Frame<'a, AckRanges, Data>

source§

impl<'a, AckRanges, Data> From<StreamDataBlocked> for Frame<'a, AckRanges, Data>

source§

impl<'a, AckRanges, Data> From<StreamsBlocked> for Frame<'a, AckRanges, Data>

1.45.0 · source§

impl<'a, B> From<Cow<'a, B>> for Rc<B>
where B: ToOwned + ?Sized, Rc<B>: From<&'a B> + From<<B as ToOwned>::Owned>,

1.45.0 · source§

impl<'a, B> From<Cow<'a, B>> for Arc<B>
where B: ToOwned + ?Sized, Arc<B>: From<&'a B> + From<<B as ToOwned>::Owned>,

source§

impl<'a, E> From<ValueReadError<E>> for DecodeStringError<'a, E>
where E: RmpReadErr,

1.0.0 · source§

impl<'a, E> From<E> for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::boxed::Box<dyn Error + 'a>
where E: Error + 'a,

1.0.0 · source§

impl<'a, E> From<E> for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::boxed::Box<dyn Error + Sync + Send + 'a>
where E: Error + Send + Sync + 'a,

§

impl<'a, E> From<E> for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::boxed::Box<dyn Error + 'a>
where E: Error + 'a,

source§

impl<'a, F> From<Box<F>> for FutureObj<'a, ()>
where F: Future<Output = ()> + Send + 'a,

source§

impl<'a, F> From<Box<F>> for LocalFutureObj<'a, ()>
where F: Future<Output = ()> + 'a,

source§

impl<'a, F> From<Pin<Box<F>>> for FutureObj<'a, ()>
where F: Future<Output = ()> + Send + 'a,

source§

impl<'a, F> From<Pin<Box<F>>> for LocalFutureObj<'a, ()>
where F: Future<Output = ()> + 'a,

source§

impl<'a, N, V> From<(N, V)> for Cookie<'a>
where N: Into<Cow<'a, str>>, V: Into<Cow<'a, str>>,

source§

impl<'a, S: AsRef<str> + ?Sized> From<&'a S> for &'a rocket::form::name::Key

source§

impl<'a, S: AsRef<str> + ?Sized> From<&'a S> for &'a Name

source§

impl<'a, S: AsRef<str> + ?Sized> From<&'a S> for &'a FileName

1.30.0 · source§

impl<'a, T> From<&'a Option<T>> for Option<&'a T>

source§

impl<'a, T> From<&'a [T; 1]> for &'a GenericArray<T, UInt<UTerm, B1>>

source§

impl<'a, T> From<&'a [T; 1]> for figment::value::value::Value
where T: Into<Value> + Clone,

source§

impl<'a, T> From<&'a [T; 2]> for &'a GenericArray<T, UInt<UInt<UTerm, B1>, B0>>

source§

impl<'a, T> From<&'a [T; 2]> for figment::value::value::Value
where T: Into<Value> + Clone,

source§

impl<'a, T> From<&'a [T; 3]> for &'a GenericArray<T, UInt<UInt<UTerm, B1>, B1>>

source§

impl<'a, T> From<&'a [T; 3]> for figment::value::value::Value
where T: Into<Value> + Clone,

source§

impl<'a, T> From<&'a [T; 4]> for &'a GenericArray<T, UInt<UInt<UInt<UTerm, B1>, B0>, B0>>

source§

impl<'a, T> From<&'a [T; 4]> for figment::value::value::Value
where T: Into<Value> + Clone,

source§

impl<'a, T> From<&'a [T; 5]> for &'a GenericArray<T, UInt<UInt<UInt<UTerm, B1>, B0>, B1>>

source§

impl<'a, T> From<&'a [T; 5]> for figment::value::value::Value
where T: Into<Value> + Clone,

source§

impl<'a, T> From<&'a [T; 6]> for &'a GenericArray<T, UInt<UInt<UInt<UTerm, B1>, B1>, B0>>

source§

impl<'a, T> From<&'a [T; 6]> for figment::value::value::Value
where T: Into<Value> + Clone,

source§

impl<'a, T> From<&'a [T; 7]> for &'a GenericArray<T, UInt<UInt<UInt<UTerm, B1>, B1>, B1>>

source§

impl<'a, T> From<&'a [T; 7]> for figment::value::value::Value
where T: Into<Value> + Clone,

source§

impl<'a, T> From<&'a [T; 8]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>>

source§

impl<'a, T> From<&'a [T; 8]> for figment::value::value::Value
where T: Into<Value> + Clone,

source§

impl<'a, T> From<&'a [T; 9]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>>

source§

impl<'a, T> From<&'a [T; 10]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>>

source§

impl<'a, T> From<&'a [T; 11]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>>

source§

impl<'a, T> From<&'a [T; 12]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>>

source§

impl<'a, T> From<&'a [T; 13]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>>

source§

impl<'a, T> From<&'a [T; 14]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>>

source§

impl<'a, T> From<&'a [T; 15]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>>

source§

impl<'a, T> From<&'a [T; 16]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>>

source§

impl<'a, T> From<&'a [T; 17]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B1>>

source§

impl<'a, T> From<&'a [T; 18]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B0>>

source§

impl<'a, T> From<&'a [T; 19]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B1>>

source§

impl<'a, T> From<&'a [T; 20]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B0>>

source§

impl<'a, T> From<&'a [T; 21]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B1>>

source§

impl<'a, T> From<&'a [T; 22]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B0>>

source§

impl<'a, T> From<&'a [T; 23]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B1>>

source§

impl<'a, T> From<&'a [T; 24]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B0>>

source§

impl<'a, T> From<&'a [T; 25]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B1>>

source§

impl<'a, T> From<&'a [T; 26]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B0>>

source§

impl<'a, T> From<&'a [T; 27]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B1>>

source§

impl<'a, T> From<&'a [T; 28]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B0>>

source§

impl<'a, T> From<&'a [T; 29]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B1>>

source§

impl<'a, T> From<&'a [T; 30]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B0>>

source§

impl<'a, T> From<&'a [T; 31]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B1>>

source§

impl<'a, T> From<&'a [T; 32]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>>

source§

impl<'a, T> From<&'a [T; 33]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B1>>

source§

impl<'a, T> From<&'a [T; 34]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B1>, B0>>

source§

impl<'a, T> From<&'a [T; 35]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B1>, B1>>

source§

impl<'a, T> From<&'a [T; 36]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B0>, B0>>

source§

impl<'a, T> From<&'a [T; 37]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B0>, B1>>

source§

impl<'a, T> From<&'a [T; 38]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B1>, B0>>

source§

impl<'a, T> From<&'a [T; 39]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B1>, B1>>

source§

impl<'a, T> From<&'a [T; 40]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B0>, B0>>

source§

impl<'a, T> From<&'a [T; 41]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B0>, B1>>

source§

impl<'a, T> From<&'a [T; 42]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B1>, B0>>

source§

impl<'a, T> From<&'a [T; 43]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B1>, B1>>

source§

impl<'a, T> From<&'a [T; 44]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B0>, B0>>

source§

impl<'a, T> From<&'a [T; 45]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B0>, B1>>

source§

impl<'a, T> From<&'a [T; 46]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B1>, B0>>

source§

impl<'a, T> From<&'a [T; 47]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B1>, B1>>

source§

impl<'a, T> From<&'a [T; 48]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B0>, B0>>

source§

impl<'a, T> From<&'a [T; 49]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B0>, B1>>

source§

impl<'a, T> From<&'a [T; 50]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B1>, B0>>

source§

impl<'a, T> From<&'a [T; 51]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B1>, B1>>

source§

impl<'a, T> From<&'a [T; 52]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B0>, B0>>

source§

impl<'a, T> From<&'a [T; 53]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B0>, B1>>

source§

impl<'a, T> From<&'a [T; 54]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B1>, B0>>

source§

impl<'a, T> From<&'a [T; 55]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B1>, B1>>

source§

impl<'a, T> From<&'a [T; 56]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B0>, B0>>

source§

impl<'a, T> From<&'a [T; 57]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B0>, B1>>

source§

impl<'a, T> From<&'a [T; 58]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B1>, B0>>

source§

impl<'a, T> From<&'a [T; 59]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B1>, B1>>

source§

impl<'a, T> From<&'a [T; 60]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B0>, B0>>

source§

impl<'a, T> From<&'a [T; 61]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B0>, B1>>

source§

impl<'a, T> From<&'a [T; 62]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B1>, B0>>

source§

impl<'a, T> From<&'a [T; 63]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B1>, B1>>

source§

impl<'a, T> From<&'a [T; 64]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>>

source§

impl<'a, T> From<&'a [T; 70]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B1>, B1>, B0>>

source§

impl<'a, T> From<&'a [T; 80]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B0>, B0>, B0>>

source§

impl<'a, T> From<&'a [T; 90]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B0>, B1>, B0>>

source§

impl<'a, T> From<&'a [T; 100]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B1>, B0>, B0>>

source§

impl<'a, T> From<&'a [T; 128]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>

source§

impl<'a, T> From<&'a [T; 200]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B1>, B0>, B0>, B0>>

source§

impl<'a, T> From<&'a [T; 256]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>

source§

impl<'a, T> From<&'a [T; 300]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B0>, B1>, B1>, B0>, B0>>

source§

impl<'a, T> From<&'a [T; 400]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B1>, B0>, B0>, B0>, B0>>

source§

impl<'a, T> From<&'a [T; 500]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B1>, B0>, B1>, B0>, B0>>

source§

impl<'a, T> From<&'a [T; 512]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>

source§

impl<'a, T> From<&'a [T; 1000]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B1>, B0>, B1>, B0>, B0>, B0>>

source§

impl<'a, T> From<&'a [T; 1024]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>

1.8.0 · source§

impl<'a, T> From<&'a [T]> for Cow<'a, [T]>
where T: Clone,

source§

impl<'a, T> From<&'a [T]> for figment::value::value::Value
where T: Into<Value> + Clone,

source§

impl<'a, T> From<&'a Range<T>> for Interval<T>
where T: IntervalBound,

source§

impl<'a, T> From<&'a RangeInclusive<T>> for Interval<T>
where T: IntervalBound,

1.28.0 · source§

impl<'a, T> From<&'a Vec<T>> for Cow<'a, [T]>
where T: Clone,

source§

impl<'a, T> From<&'a GenericArray<u8, <T as OutputSizeUser>::OutputSize>> for CtOutput<T>
where T: OutputSizeUser,

1.30.0 · source§

impl<'a, T> From<&'a mut Option<T>> for Option<&'a mut T>

source§

impl<'a, T> From<&'a mut [T; 1]> for &'a mut GenericArray<T, UInt<UTerm, B1>>

source§

impl<'a, T> From<&'a mut [T; 2]> for &'a mut GenericArray<T, UInt<UInt<UTerm, B1>, B0>>

source§

impl<'a, T> From<&'a mut [T; 3]> for &'a mut GenericArray<T, UInt<UInt<UTerm, B1>, B1>>

source§

impl<'a, T> From<&'a mut [T; 4]> for &'a mut GenericArray<T, UInt<UInt<UInt<UTerm, B1>, B0>, B0>>

source§

impl<'a, T> From<&'a mut [T; 5]> for &'a mut GenericArray<T, UInt<UInt<UInt<UTerm, B1>, B0>, B1>>

source§

impl<'a, T> From<&'a mut [T; 6]> for &'a mut GenericArray<T, UInt<UInt<UInt<UTerm, B1>, B1>, B0>>

source§

impl<'a, T> From<&'a mut [T; 7]> for &'a mut GenericArray<T, UInt<UInt<UInt<UTerm, B1>, B1>, B1>>

source§

impl<'a, T> From<&'a mut [T; 8]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>>

source§

impl<'a, T> From<&'a mut [T; 9]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>>

source§

impl<'a, T> From<&'a mut [T; 10]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>>

source§

impl<'a, T> From<&'a mut [T; 11]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>>

source§

impl<'a, T> From<&'a mut [T; 12]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>>

source§

impl<'a, T> From<&'a mut [T; 13]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>>

source§

impl<'a, T> From<&'a mut [T; 14]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>>

source§

impl<'a, T> From<&'a mut [T; 15]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>>

source§

impl<'a, T> From<&'a mut [T; 16]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>>

source§

impl<'a, T> From<&'a mut [T; 17]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B1>>

source§

impl<'a, T> From<&'a mut [T; 18]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B0>>

source§

impl<'a, T> From<&'a mut [T; 19]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B1>>

source§

impl<'a, T> From<&'a mut [T; 20]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B0>>

source§

impl<'a, T> From<&'a mut [T; 21]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B1>>

source§

impl<'a, T> From<&'a mut [T; 22]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B0>>

source§

impl<'a, T> From<&'a mut [T; 23]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B1>>

source§

impl<'a, T> From<&'a mut [T; 24]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B0>>

source§

impl<'a, T> From<&'a mut [T; 25]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B1>>

source§

impl<'a, T> From<&'a mut [T; 26]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B0>>

source§

impl<'a, T> From<&'a mut [T; 27]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B1>>

source§

impl<'a, T> From<&'a mut [T; 28]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B0>>

source§

impl<'a, T> From<&'a mut [T; 29]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B1>>

source§

impl<'a, T> From<&'a mut [T; 30]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B0>>

source§

impl<'a, T> From<&'a mut [T; 31]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B1>>

source§

impl<'a, T> From<&'a mut [T; 32]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>>

source§

impl<'a, T> From<&'a mut [T; 33]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B1>>

source§

impl<'a, T> From<&'a mut [T; 34]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B1>, B0>>

source§

impl<'a, T> From<&'a mut [T; 35]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B1>, B1>>

source§

impl<'a, T> From<&'a mut [T; 36]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B0>, B0>>

source§

impl<'a, T> From<&'a mut [T; 37]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B0>, B1>>

source§

impl<'a, T> From<&'a mut [T; 38]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B1>, B0>>

source§

impl<'a, T> From<&'a mut [T; 39]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B1>, B1>>

source§

impl<'a, T> From<&'a mut [T; 40]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B0>, B0>>

source§

impl<'a, T> From<&'a mut [T; 41]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B0>, B1>>

source§

impl<'a, T> From<&'a mut [T; 42]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B1>, B0>>

source§

impl<'a, T> From<&'a mut [T; 43]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B1>, B1>>

source§

impl<'a, T> From<&'a mut [T; 44]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B0>, B0>>

source§

impl<'a, T> From<&'a mut [T; 45]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B0>, B1>>

source§

impl<'a, T> From<&'a mut [T; 46]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B1>, B0>>

source§

impl<'a, T> From<&'a mut [T; 47]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B1>, B1>>

source§

impl<'a, T> From<&'a mut [T; 48]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B0>, B0>>

source§

impl<'a, T> From<&'a mut [T; 49]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B0>, B1>>

source§

impl<'a, T> From<&'a mut [T; 50]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B1>, B0>>

source§

impl<'a, T> From<&'a mut [T; 51]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B1>, B1>>

source§

impl<'a, T> From<&'a mut [T; 52]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B0>, B0>>

source§

impl<'a, T> From<&'a mut [T; 53]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B0>, B1>>

source§

impl<'a, T> From<&'a mut [T; 54]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B1>, B0>>

source§

impl<'a, T> From<&'a mut [T; 55]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B1>, B1>>

source§

impl<'a, T> From<&'a mut [T; 56]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B0>, B0>>

source§

impl<'a, T> From<&'a mut [T; 57]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B0>, B1>>

source§

impl<'a, T> From<&'a mut [T; 58]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B1>, B0>>

source§

impl<'a, T> From<&'a mut [T; 59]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B1>, B1>>

source§

impl<'a, T> From<&'a mut [T; 60]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B0>, B0>>

source§

impl<'a, T> From<&'a mut [T; 61]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B0>, B1>>

source§

impl<'a, T> From<&'a mut [T; 62]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B1>, B0>>

source§

impl<'a, T> From<&'a mut [T; 63]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B1>, B1>>

source§

impl<'a, T> From<&'a mut [T; 64]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>>

source§

impl<'a, T> From<&'a mut [T; 70]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B1>, B1>, B0>>

source§

impl<'a, T> From<&'a mut [T; 80]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B0>, B0>, B0>>

source§

impl<'a, T> From<&'a mut [T; 90]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B0>, B1>, B0>>

source§

impl<'a, T> From<&'a mut [T; 100]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B1>, B0>, B0>>

source§

impl<'a, T> From<&'a mut [T; 128]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>

source§

impl<'a, T> From<&'a mut [T; 200]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B1>, B0>, B0>, B0>>

source§

impl<'a, T> From<&'a mut [T; 256]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>

source§

impl<'a, T> From<&'a mut [T; 300]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B0>, B1>, B1>, B0>, B0>>

source§

impl<'a, T> From<&'a mut [T; 400]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B1>, B0>, B0>, B0>, B0>>

source§

impl<'a, T> From<&'a mut [T; 500]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B1>, B0>, B1>, B0>, B0>>

source§

impl<'a, T> From<&'a mut [T; 512]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>

source§

impl<'a, T> From<&'a mut [T; 1000]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B1>, B0>, B1>, B0>, B0>, B0>>

source§

impl<'a, T> From<&'a mut [T; 1024]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>

source§

impl<'a, T> From<&'a mut [T]> for InOutBuf<'a, 'a, T>

1.14.0 · source§

impl<'a, T> From<Cow<'a, [T]>> for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::vec::Vec<T>
where [T]: ToOwned<Owned = Vec<T>>,

source§

impl<'a, T> From<&'a T> for Ptr<'a, T>
where T: 'a + ?Sized,

source§

impl<'a, T> From<&'a mut T> for InOut<'a, 'a, T>

source§

impl<'a, T> From<&T> for OwnedFormatItem
where T: AsRef<[BorrowedFormatItem<'a>]> + ?Sized,

1.8.0 · source§

impl<'a, T> From<Vec<T>> for Cow<'a, [T]>
where T: Clone,

source§

impl<'a, T> From<Vec<T>> for figment::value::value::Value
where T: Into<Value>,

source§

impl<'a, T> From<FutureObj<'a, T>> for LocalFutureObj<'a, T>

source§

impl<'a, T, N> From<&'a [T]> for &'a GenericArray<T, N>
where N: ArrayLength<T>,

source§

impl<'a, T, N> From<&'a mut [T]> for &'a mut GenericArray<T, N>
where N: ArrayLength<T>,

1.77.0 · source§

impl<'a, T, const N: usize> From<&'a [T; N]> for Cow<'a, [T]>
where T: Clone,

source§

impl<'b> From<&'b Value> for toml_edit::value::Value

source§

impl<'b> From<&'b str> for toml_edit::value::Value

source§

impl<'b> From<&'b str> for toml_edit::key::Key

source§

impl<'b> From<&'b String> for toml_edit::value::Value

source§

impl<'b> From<&'b String> for toml_edit::key::Key

source§

impl<'b> From<&'b InternalString> for toml_edit::value::Value

source§

impl<'c> From<Cookie<'c>> for CookieBuilder<'c>

source§

impl<'c, 'i, Data> From<EncodeTlsData<'c, Data>> for ConnectionState<'c, 'i, Data>

source§

impl<'c, 'i, Data> From<ReadEarlyData<'c, 'i, Data>> for ConnectionState<'c, 'i, Data>

source§

impl<'c, 'i, Data> From<ReadTraffic<'c, 'i, Data>> for ConnectionState<'c, 'i, Data>

source§

impl<'c, 'i, Data> From<TransmitTlsData<'c, Data>> for ConnectionState<'c, 'i, Data>

source§

impl<'data> From<&'data mut [u8]> for BorrowedBuf<'data>

Create a new BorrowedBuf from a fully initialized slice.

source§

impl<'data> From<&'data mut [MaybeUninit<u8>]> for BorrowedBuf<'data>

Create a new BorrowedBuf from an uninitialized buffer.

Use set_init if part of the buffer is known to be already initialized.

source§

impl<'f> From<Errors<'f>> for Context<'f>

source§

impl<'inp, 'out, T> From<(&'inp T, &'out mut T)> for InOut<'inp, 'out, T>

source§

impl<'msg, 'aad> From<&'msg [u8]> for Payload<'msg, 'aad>

source§

impl<'r> From<&'r [CertificateDer<'r>]> for Certificates<'r>

source§

impl<'r, T: Send + Sync + 'static> From<&'r T> for &'r State<T>

source§

impl<'s, 'c> From<&'c str> for Uncased<'s>
where 'c: 's,

source§

impl<'s, 'c> From<&'c UncasedStr> for Uncased<'s>
where 'c: 's,

source§

impl<'s, 'c> From<Cow<'c, str>> for Uncased<'s>
where 'c: 's,

source§

impl<'s, S> From<&'s S> for SockRef<'s>
where S: AsFd,

On Windows, a corresponding From<&impl AsSocket> implementation exists.

source§

impl<'s, T> From<&'s mut [T]> for SliceVec<'s, T>

source§

impl<'s, T, A> From<&'s mut A> for SliceVec<'s, T>
where A: AsMut<[T]>,

source§

impl<'v> From<&'v str> for NameBuf<'v>

source§

impl<'v> From<&'v Name> for NameBuf<'v>

source§

impl<'v> From<NameView<'v>> for NameBuf<'v>

source§

impl<'v> From<String> for NameBuf<'v>

source§

impl<'v> From<Vec<Error<'v>>> for Errors<'v>

source§

impl<'v, T: Into<ErrorKind<'v>>> From<T> for rocket::form::Error<'v>

source§

impl<'v, T: Into<Error<'v>>> From<T> for Errors<'v>

source§

impl<A> From<&str> for allocator_api2::stable::boxed::Box<str, A>
where A: Allocator + Default,

1.19.0 · source§

impl<A> From<Box<str, A>> for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::boxed::Box<[u8], A>
where A: Allocator,

source§

impl<A> From<Vec<<A as Array>::Item>> for SmallVec<A>
where A: Array,

source§

impl<A> From<Box<str, A>> for allocator_api2::stable::boxed::Box<[u8], A>
where A: Allocator,

source§

impl<A> From<ArrayVec<A>> for TinyVec<A>
where A: Array,

source§

impl<A> From<A> for TinyVec<A>
where A: Array,

source§

impl<A> From<A> for SmallVec<A>
where A: Array,

source§

impl<A> From<A> for ArrayVec<A>
where A: Array,

source§

impl<Aes, NonceSize, TagSize> From<Aes> for AesGcm<Aes, NonceSize, TagSize>
where Aes: BlockSizeUser<BlockSize = UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>> + BlockEncrypt, TagSize: TagSize,

source§

impl<B> From<&PublicKey> for PublicKeyComponents<B>
where B: FromIterator<u8>,

§

impl<B> From<(StreamType, Frame<B>)> for WriteBuf<B>
where B: Buf,

§

impl<B> From<BidirectionalStream> for BidiStream<B>
where B: Buf,

§

impl<B> From<SendStream> for SendStream<B>
where B: Buf,

§

impl<B> From<BidiStreamHeader> for WriteBuf<B>
where B: Buf,

§

impl<B> From<Frame<B>> for WriteBuf<B>
where B: Buf,

§

impl<B> From<StreamType> for WriteBuf<B>
where B: Buf,

§

impl<B> From<UniStreamHeader> for WriteBuf<B>
where B: Buf,

source§

impl<Data> From<ConnectionCore<Data>> for rustls::conn::ConnectionCommon<Data>

source§

impl<Data> From<ConnectionCore<Data>> for rustls::conn::ConnectionCommon<Data>

source§

impl<Data> From<ConnectionCore<Data>> for UnbufferedConnectionCommon<Data>

source§

impl<Data> From<ConnectionCore<Data>> for rustls::quic::connection::ConnectionCommon<Data>

source§

impl<Data> From<ConnectionCore<Data>> for rustls::quic::ConnectionCommon<Data>

source§

impl<E> From<ValueReadError<E>> for NumValueReadError<E>
where E: RmpReadErr,

source§

impl<E> From<Error<E>> for std::io::error::Error
where E: 'static + Error + Send + Sync,

source§

impl<E> From<MarkerReadError<E>> for NumValueReadError<E>
where E: RmpReadErr,

source§

impl<E> From<MarkerReadError<E>> for ValueReadError<E>
where E: RmpReadErr,

source§

impl<E> From<E> for s2n_quic_core::buffer::error::Error<E>

source§

impl<E> From<E> for Debug<E>

source§

impl<E> From<E> for Report<E>
where E: Error,

source§

impl<E> From<E> for MarkerReadError<E>
where E: RmpReadErr,

source§

impl<E> From<MarkerWriteError<E>> for ValueWriteError<E>
where E: RmpWriteErr,

source§

impl<F> From<PersistError<F>> for std::io::error::Error

source§

impl<F> From<PersistError<F>> for NamedTempFile<F>

source§

impl<F, Context, Outcome> From<Once<F, Context, Outcome>> for Result<Outcome, Error>

source§

impl<H> From<&CuckooFilter<H>> for ExportedCuckooFilter
where H: Hasher + Default,

source§

impl<H> From<ExportedCuckooFilter> for CuckooFilter<H>

1.17.0 · source§

impl<I> From<(I, u16)> for SocketAddr
where I: Into<IpAddr>,

source§

impl<I> From<I> for Pear<I>
where I: Input,

source§

impl<K, V> From<&Slice<K, V>> for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::boxed::Box<Slice<K, V>>
where K: Copy, V: Copy,

source§

impl<K, V> From<BTreeMap<K, V>> for figment::value::value::Value
where K: AsRef<str>, V: Into<Value>,

source§

impl<K, V> From<HashMap<K, V, RandomState>> for AHashMap<K, V>

source§

impl<K, V, A, const N: usize> From<[(K, V); N]> for hashbrown::map::HashMap<K, V, BuildHasherDefault<AHasher>, A>
where K: Eq + Hash, A: Default + Allocator,

1.56.0 · source§

impl<K, V, const N: usize> From<[(K, V); N]> for BTreeMap<K, V>
where K: Ord,

1.56.0 · source§

impl<K, V, const N: usize> From<[(K, V); N]> for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::collections::HashMap<K, V>
where K: Eq + Hash,

source§

impl<K, V, const N: usize> From<[(K, V); N]> for AHashMap<K, V>
where K: Eq + Hash,

source§

impl<K, V, const N: usize> From<[(K, V); N]> for IndexMap<K, V>
where K: Hash + Eq,

source§

impl<L, R> From<Result<R, L>> for Either<L, R>

Convert from Result to Either with Ok => Right and Err => Left.

source§

impl<NI> From<u32x4x2_avx2<NI>> for vec256_storage

source§

impl<NI> From<x2<u32x4x2_avx2<NI>, G0>> for vec512_storage
where NI: Copy,

source§

impl<O> From<f32> for F32<O>
where O: ByteOrder,

source§

impl<O> From<f64> for F64<O>
where O: ByteOrder,

source§

impl<O> From<i16> for zerocopy::byteorder::I16<O>
where O: ByteOrder,

source§

impl<O> From<i32> for zerocopy::byteorder::I32<O>
where O: ByteOrder,

source§

impl<O> From<i64> for zerocopy::byteorder::I64<O>
where O: ByteOrder,

source§

impl<O> From<i128> for zerocopy::byteorder::I128<O>
where O: ByteOrder,

source§

impl<O> From<u16> for zerocopy::byteorder::U16<O>
where O: ByteOrder,

source§

impl<O> From<u32> for zerocopy::byteorder::U32<O>
where O: ByteOrder,

source§

impl<O> From<u64> for zerocopy::byteorder::U64<O>
where O: ByteOrder,

source§

impl<O> From<u128> for zerocopy::byteorder::U128<O>
where O: ByteOrder,

source§

impl<O> From<F32<O>> for f32
where O: ByteOrder,

source§

impl<O> From<F32<O>> for f64
where O: ByteOrder,

source§

impl<O> From<F32<O>> for [u8; 4]
where O: ByteOrder,

source§

impl<O> From<F64<O>> for f64
where O: ByteOrder,

source§

impl<O> From<F64<O>> for [u8; 8]
where O: ByteOrder,

source§

impl<O> From<I16<O>> for i16
where O: ByteOrder,

source§

impl<O> From<I16<O>> for i32
where O: ByteOrder,

source§

impl<O> From<I16<O>> for i64
where O: ByteOrder,

source§

impl<O> From<I16<O>> for i128
where O: ByteOrder,

source§

impl<O> From<I16<O>> for isize
where O: ByteOrder,

source§

impl<O> From<I16<O>> for [u8; 2]
where O: ByteOrder,

source§

impl<O> From<I32<O>> for i32
where O: ByteOrder,

source§

impl<O> From<I32<O>> for i64
where O: ByteOrder,

source§

impl<O> From<I32<O>> for i128
where O: ByteOrder,

source§

impl<O> From<I32<O>> for [u8; 4]
where O: ByteOrder,

source§

impl<O> From<I64<O>> for i64
where O: ByteOrder,

source§

impl<O> From<I64<O>> for i128
where O: ByteOrder,

source§

impl<O> From<I64<O>> for [u8; 8]
where O: ByteOrder,

source§

impl<O> From<I128<O>> for i128
where O: ByteOrder,

source§

impl<O> From<I128<O>> for [u8; 16]
where O: ByteOrder,

source§

impl<O> From<U16<O>> for u16
where O: ByteOrder,

source§

impl<O> From<U16<O>> for u32
where O: ByteOrder,

source§

impl<O> From<U16<O>> for u64
where O: ByteOrder,

source§

impl<O> From<U16<O>> for u128
where O: ByteOrder,

source§

impl<O> From<U16<O>> for usize
where O: ByteOrder,

source§

impl<O> From<U16<O>> for [u8; 2]
where O: ByteOrder,

source§

impl<O> From<U32<O>> for u32
where O: ByteOrder,

source§

impl<O> From<U32<O>> for u64
where O: ByteOrder,

source§

impl<O> From<U32<O>> for u128
where O: ByteOrder,

source§

impl<O> From<U32<O>> for [u8; 4]
where O: ByteOrder,

source§

impl<O> From<U64<O>> for u64
where O: ByteOrder,

source§

impl<O> From<U64<O>> for u128
where O: ByteOrder,

source§

impl<O> From<U64<O>> for [u8; 8]
where O: ByteOrder,

source§

impl<O> From<U128<O>> for u128
where O: ByteOrder,

source§

impl<O> From<U128<O>> for [u8; 16]
where O: ByteOrder,

source§

impl<O> From<[u8; 2]> for zerocopy::byteorder::I16<O>
where O: ByteOrder,

source§

impl<O> From<[u8; 2]> for zerocopy::byteorder::U16<O>
where O: ByteOrder,

source§

impl<O> From<[u8; 4]> for F32<O>
where O: ByteOrder,

source§

impl<O> From<[u8; 4]> for zerocopy::byteorder::I32<O>
where O: ByteOrder,

source§

impl<O> From<[u8; 4]> for zerocopy::byteorder::U32<O>
where O: ByteOrder,

source§

impl<O> From<[u8; 8]> for F64<O>
where O: ByteOrder,

source§

impl<O> From<[u8; 8]> for zerocopy::byteorder::I64<O>
where O: ByteOrder,

source§

impl<O> From<[u8; 8]> for zerocopy::byteorder::U64<O>
where O: ByteOrder,

source§

impl<O> From<[u8; 16]> for zerocopy::byteorder::I128<O>
where O: ByteOrder,

source§

impl<O> From<[u8; 16]> for zerocopy::byteorder::U128<O>
where O: ByteOrder,

source§

impl<O, P> From<F32<O>> for F64<P>
where O: ByteOrder, P: ByteOrder,

source§

impl<O, P> From<I16<O>> for zerocopy::byteorder::I32<P>
where O: ByteOrder, P: ByteOrder,

source§

impl<O, P> From<I16<O>> for zerocopy::byteorder::I64<P>
where O: ByteOrder, P: ByteOrder,

source§

impl<O, P> From<I16<O>> for zerocopy::byteorder::I128<P>
where O: ByteOrder, P: ByteOrder,

source§

impl<O, P> From<I32<O>> for zerocopy::byteorder::I64<P>
where O: ByteOrder, P: ByteOrder,

source§

impl<O, P> From<I32<O>> for zerocopy::byteorder::I128<P>
where O: ByteOrder, P: ByteOrder,

source§

impl<O, P> From<I64<O>> for zerocopy::byteorder::I128<P>
where O: ByteOrder, P: ByteOrder,

source§

impl<O, P> From<U16<O>> for zerocopy::byteorder::U32<P>
where O: ByteOrder, P: ByteOrder,

source§

impl<O, P> From<U16<O>> for zerocopy::byteorder::U64<P>
where O: ByteOrder, P: ByteOrder,

source§

impl<O, P> From<U16<O>> for zerocopy::byteorder::U128<P>
where O: ByteOrder, P: ByteOrder,

source§

impl<O, P> From<U32<O>> for zerocopy::byteorder::U64<P>
where O: ByteOrder, P: ByteOrder,

source§

impl<O, P> From<U32<O>> for zerocopy::byteorder::U128<P>
where O: ByteOrder, P: ByteOrder,

source§

impl<O, P> From<U64<O>> for zerocopy::byteorder::U128<P>
where O: ByteOrder, P: ByteOrder,

source§

impl<P> From<P> for RelativePathBuf
where P: AsRef<Path>,

source§

impl<R, G, T> From<T> for ReentrantMutex<R, G, T>
where R: RawMutex, G: GetThreadId,

source§

impl<R, T> From<T> for lock_api::mutex::Mutex<R, T>
where R: RawMutex,

source§

impl<R, T> From<T> for lock_api::rwlock::RwLock<R, T>
where R: RawRwLock,

source§

impl<RW> From<BufReader<BufWriter<RW>>> for BufStream<RW>

source§

impl<RW> From<BufWriter<BufReader<RW>>> for BufStream<RW>

source§

impl<S3, S4, NI> From<u32x4_sse2<S3, S4, NI>> for vec128_storage

source§

impl<S3, S4, NI> From<u64x2_sse2<S3, S4, NI>> for vec128_storage

source§

impl<S3, S4, NI> From<u128x1_sse2<S3, S4, NI>> for vec128_storage

source§

impl<S> From<ImDocument<S>> for Deserializer<S>

source§

impl<S> From<S> for ByteStream<S>

source§

impl<S> From<S> for TextStream<S>

source§

impl<S> From<S> for Dispatch
where S: Subscriber + Send + Sync + 'static,

source§

impl<S, V> From<BTreeMap<S, V>> for toml::value::Value
where S: Into<String>, V: Into<Value>,

source§

impl<S, V> From<HashMap<S, V>> for toml::value::Value
where S: Into<String> + Hash + Eq, V: Into<Value>,

source§

impl<S: Stream> From<S> for ReaderStream<S>

source§

impl<S: Stream<Item = Event>> From<S> for EventStream<S>

source§

impl<T> From<&[T]> for rocket::serde::json::Value
where T: Clone + Into<Value>,

1.17.0 · source§

impl<T> From<&[T]> for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::boxed::Box<[T]>
where T: Clone,

1.0.0 · source§

impl<T> From<&[T]> for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::vec::Vec<T>
where T: Clone,

1.21.0 · source§

impl<T> From<&[T]> for Rc<[T]>
where T: Clone,

1.21.0 · source§

impl<T> From<&[T]> for Arc<[T]>
where T: Clone,

source§

impl<T> From<&[T]> for allocator_api2::stable::vec::Vec<T>
where T: Clone,

source§

impl<T> From<&Slice<T>> for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::boxed::Box<Slice<T>>
where T: Copy,

source§

impl<T> From<&Interval<T>> for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::ops::Range<T>
where T: IntervalBound,

source§

impl<T> From<&Interval<T>> for RangeInclusive<T>
where T: IntervalBound,

source§

impl<T> From<&Interval<T>> for Interval<T>
where T: IntervalBound,

1.19.0 · source§

impl<T> From<&mut [T]> for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::vec::Vec<T>
where T: Clone,

source§

impl<T> From<&mut [T]> for allocator_api2::stable::vec::Vec<T>
where T: Clone,

source§

impl<T> From<Option<T>> for rocket::serde::json::Value
where T: Into<Value>,

source§

impl<T> From<Option<T>> for OptionFuture<T>

1.45.0 · source§

impl<T> From<Cow<'_, [T]>> for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::boxed::Box<[T]>
where T: Clone,

1.71.0 · source§

impl<T> From<[T; 1]> for (T,)

source§

impl<T> From<[T; 1]> for GenericArray<T, UInt<UTerm, B1>>

1.71.0 · source§

impl<T> From<[T; 2]> for (T, T)

source§

impl<T> From<[T; 2]> for GenericArray<T, UInt<UInt<UTerm, B1>, B0>>

1.71.0 · source§

impl<T> From<[T; 3]> for (T, T, T)

source§

impl<T> From<[T; 3]> for GenericArray<T, UInt<UInt<UTerm, B1>, B1>>

1.71.0 · source§

impl<T> From<[T; 4]> for (T, T, T, T)

source§

impl<T> From<[T; 4]> for GenericArray<T, UInt<UInt<UInt<UTerm, B1>, B0>, B0>>

1.71.0 · source§

impl<T> From<[T; 5]> for (T, T, T, T, T)

source§

impl<T> From<[T; 5]> for GenericArray<T, UInt<UInt<UInt<UTerm, B1>, B0>, B1>>

1.71.0 · source§

impl<T> From<[T; 6]> for (T, T, T, T, T, T)

source§

impl<T> From<[T; 6]> for GenericArray<T, UInt<UInt<UInt<UTerm, B1>, B1>, B0>>

1.71.0 · source§

impl<T> From<[T; 7]> for (T, T, T, T, T, T, T)

source§

impl<T> From<[T; 7]> for GenericArray<T, UInt<UInt<UInt<UTerm, B1>, B1>, B1>>

1.71.0 · source§

impl<T> From<[T; 8]> for (T, T, T, T, T, T, T, T)

source§

impl<T> From<[T; 8]> for GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>>

1.71.0 · source§

impl<T> From<[T; 9]> for (T, T, T, T, T, T, T, T, T)

source§

impl<T> From<[T; 9]> for GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>>

1.71.0 · source§

impl<T> From<[T; 10]> for (T, T, T, T, T, T, T, T, T, T)

source§

impl<T> From<[T; 10]> for GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>>

1.71.0 · source§

impl<T> From<[T; 11]> for (T, T, T, T, T, T, T, T, T, T, T)

source§

impl<T> From<[T; 11]> for GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>>

1.71.0 · source§

impl<T> From<[T; 12]> for (T, T, T, T, T, T, T, T, T, T, T, T)

source§

impl<T> From<[T; 12]> for GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>>

source§

impl<T> From<[T; 13]> for GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>>

source§

impl<T> From<[T; 14]> for GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>>

source§

impl<T> From<[T; 15]> for GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>>

source§

impl<T> From<[T; 16]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>>

source§

impl<T> From<[T; 17]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B1>>

source§

impl<T> From<[T; 18]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B0>>

source§

impl<T> From<[T; 19]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B1>>

source§

impl<T> From<[T; 20]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B0>>

source§

impl<T> From<[T; 21]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B1>>

source§

impl<T> From<[T; 22]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B0>>

source§

impl<T> From<[T; 23]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B1>>

source§

impl<T> From<[T; 24]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B0>>

source§

impl<T> From<[T; 25]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B1>>

source§

impl<T> From<[T; 26]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B0>>

source§

impl<T> From<[T; 27]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B1>>

source§

impl<T> From<[T; 28]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B0>>

source§

impl<T> From<[T; 29]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B1>>

source§

impl<T> From<[T; 30]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B0>>

source§

impl<T> From<[T; 31]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B1>>

source§

impl<T> From<[T; 32]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>>

source§

impl<T> From<[T; 33]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B1>>

source§

impl<T> From<[T; 34]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B1>, B0>>

source§

impl<T> From<[T; 35]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B1>, B1>>

source§

impl<T> From<[T; 36]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B0>, B0>>

source§

impl<T> From<[T; 37]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B0>, B1>>

source§

impl<T> From<[T; 38]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B1>, B0>>

source§

impl<T> From<[T; 39]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B1>, B1>>

source§

impl<T> From<[T; 40]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B0>, B0>>

source§

impl<T> From<[T; 41]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B0>, B1>>

source§

impl<T> From<[T; 42]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B1>, B0>>

source§

impl<T> From<[T; 43]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B1>, B1>>

source§

impl<T> From<[T; 44]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B0>, B0>>

source§

impl<T> From<[T; 45]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B0>, B1>>

source§

impl<T> From<[T; 46]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B1>, B0>>

source§

impl<T> From<[T; 47]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B1>, B1>>

source§

impl<T> From<[T; 48]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B0>, B0>>

source§

impl<T> From<[T; 49]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B0>, B1>>

source§

impl<T> From<[T; 50]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B1>, B0>>

source§

impl<T> From<[T; 51]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B1>, B1>>

source§

impl<T> From<[T; 52]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B0>, B0>>

source§

impl<T> From<[T; 53]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B0>, B1>>

source§

impl<T> From<[T; 54]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B1>, B0>>

source§

impl<T> From<[T; 55]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B1>, B1>>

source§

impl<T> From<[T; 56]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B0>, B0>>

source§

impl<T> From<[T; 57]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B0>, B1>>

source§

impl<T> From<[T; 58]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B1>, B0>>

source§

impl<T> From<[T; 59]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B1>, B1>>

source§

impl<T> From<[T; 60]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B0>, B0>>

source§

impl<T> From<[T; 61]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B0>, B1>>

source§

impl<T> From<[T; 62]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B1>, B0>>

source§

impl<T> From<[T; 63]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B1>, B1>>

source§

impl<T> From<[T; 64]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>>

source§

impl<T> From<[T; 70]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B1>, B1>, B0>>

source§

impl<T> From<[T; 80]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B0>, B0>, B0>>

source§

impl<T> From<[T; 90]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B0>, B1>, B0>>

source§

impl<T> From<[T; 100]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B1>, B0>, B0>>

source§

impl<T> From<[T; 128]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>

source§

impl<T> From<[T; 200]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B1>, B0>, B0>, B0>>

source§

impl<T> From<[T; 256]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>

source§

impl<T> From<[T; 300]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B0>, B1>, B1>, B0>, B0>>

source§

impl<T> From<[T; 400]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B1>, B0>, B0>, B0>, B0>>

source§

impl<T> From<[T; 500]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B1>, B0>, B1>, B0>, B0>>

source§

impl<T> From<[T; 512]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>

source§

impl<T> From<[T; 1000]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B1>, B0>, B1>, B0>, B0>, B0>>

source§

impl<T> From<[T; 1024]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>

1.34.0 · source§

impl<T> From<!> for T

Stability note: This impl does not yet exist, but we are “reserving space” to add it in the future. See rust-lang/rust#64715 for details.

1.23.0 · source§

impl<T> From<*mut T> for AtomicPtr<T>

1.25.0 · source§

impl<T> From<&T> for NonNull<T>
where T: ?Sized,

1.0.0 · source§

impl<T> From<&T> for OsString
where T: AsRef<OsStr> + ?Sized,

1.0.0 · source§

impl<T> From<&T> for PathBuf
where T: AsRef<OsStr> + ?Sized,

1.25.0 · source§

impl<T> From<&mut T> for NonNull<T>
where T: ?Sized,

1.71.0 · source§

impl<T> From<(T, T)> for [T; 2]

source§

impl<T> From<(T, T)> for Ratio<T>
where T: Clone + Integer,

1.71.0 · source§

impl<T> From<(T, T, T)> for [T; 3]

1.71.0 · source§

impl<T> From<(T, T, T, T)> for [T; 4]

1.71.0 · source§

impl<T> From<(T, T, T, T, T)> for [T; 5]

1.71.0 · source§

impl<T> From<(T, T, T, T, T, T)> for [T; 6]

1.71.0 · source§

impl<T> From<(T, T, T, T, T, T, T)> for [T; 7]

1.71.0 · source§

impl<T> From<(T, T, T, T, T, T, T, T)> for [T; 8]

1.71.0 · source§

impl<T> From<(T, T, T, T, T, T, T, T, T)> for [T; 9]

1.71.0 · source§

impl<T> From<(T, T, T, T, T, T, T, T, T, T)> for [T; 10]

1.71.0 · source§

impl<T> From<(T, T, T, T, T, T, T, T, T, T, T)> for [T; 11]

1.71.0 · source§

impl<T> From<(T, T, T, T, T, T, T, T, T, T, T, T)> for [T; 12]

1.71.0 · source§

impl<T> From<(T,)> for [T; 1]

source§

impl<T> From<TlsStream<T>> for TlsStream<T>

source§

impl<T> From<SequenceOf<T>> for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::vec::Vec<T>

source§

impl<T> From<SetOf<T>> for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::vec::Vec<T>

source§

impl<T> From<HashSet<T, RandomState>> for AHashSet<T>

source§

impl<T> From<Range<T>> for Interval<T>
where T: IntervalBound,

source§

impl<T> From<Range<T>> for IntervalSet<T>
where T: IntervalBound,

source§

impl<T> From<RangeInclusive<T>> for Interval<T>
where T: IntervalBound,

source§

impl<T> From<RangeInclusive<T>> for IntervalSet<T>
where T: IntervalBound,

source§

impl<T> From<Vec<T>> for rocket::serde::json::Value
where T: Into<Value>,

1.31.0 · source§

impl<T> From<NonZero<T>> for T

1.24.0 · source§

impl<T> From<SendError<T>> for std::sync::mpsc::TrySendError<T>

1.0.0 · source§

impl<T> From<PoisonError<T>> for TryLockError<T>

source§

impl<T> From<GenericArray<u8, <T as OutputSizeUser>::OutputSize>> for CtOutput<T>
where T: OutputSizeUser,

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>> for [T; 1024]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>> for [T; 512]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B1>, B0>, B1>, B0>, B0>, B0>>> for [T; 1000]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>> for [T; 256]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B0>, B1>, B1>, B0>, B0>>> for [T; 300]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B1>, B0>, B0>, B0>, B0>>> for [T; 400]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B1>, B0>, B1>, B0>, B0>>> for [T; 500]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>> for [T; 128]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B1>, B0>, B0>, B0>>> for [T; 200]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>>> for [T; 64]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B1>, B1>, B0>>> for [T; 70]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B0>, B0>, B0>>> for [T; 80]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B0>, B1>, B0>>> for [T; 90]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B1>, B0>, B0>>> for [T; 100]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>>> for [T; 32]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B1>>> for [T; 33]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B1>, B0>>> for [T; 34]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B1>, B1>>> for [T; 35]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B0>, B0>>> for [T; 36]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B0>, B1>>> for [T; 37]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B1>, B0>>> for [T; 38]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B1>, B1>>> for [T; 39]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B0>, B0>>> for [T; 40]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B0>, B1>>> for [T; 41]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B1>, B0>>> for [T; 42]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B1>, B1>>> for [T; 43]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B0>, B0>>> for [T; 44]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B0>, B1>>> for [T; 45]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B1>, B0>>> for [T; 46]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B1>, B1>>> for [T; 47]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B0>, B0>>> for [T; 48]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B0>, B1>>> for [T; 49]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B1>, B0>>> for [T; 50]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B1>, B1>>> for [T; 51]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B0>, B0>>> for [T; 52]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B0>, B1>>> for [T; 53]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B1>, B0>>> for [T; 54]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B1>, B1>>> for [T; 55]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B0>, B0>>> for [T; 56]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B0>, B1>>> for [T; 57]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B1>, B0>>> for [T; 58]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B1>, B1>>> for [T; 59]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B0>, B0>>> for [T; 60]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B0>, B1>>> for [T; 61]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B1>, B0>>> for [T; 62]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B1>, B1>>> for [T; 63]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>>> for [T; 16]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B1>>> for [T; 17]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B0>>> for [T; 18]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B1>>> for [T; 19]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B0>>> for [T; 20]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B1>>> for [T; 21]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B0>>> for [T; 22]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B1>>> for [T; 23]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B0>>> for [T; 24]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B1>>> for [T; 25]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B0>>> for [T; 26]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B1>>> for [T; 27]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B0>>> for [T; 28]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B1>>> for [T; 29]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B0>>> for [T; 30]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B1>>> for [T; 31]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>>> for [T; 8]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>>> for [T; 9]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>>> for [T; 10]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>>> for [T; 11]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>>> for [T; 12]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>>> for [T; 13]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>>> for [T; 14]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>>> for [T; 15]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UTerm, B1>, B0>, B0>>> for [T; 4]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UTerm, B1>, B0>, B1>>> for [T; 5]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UTerm, B1>, B1>, B0>>> for [T; 6]

source§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UTerm, B1>, B1>, B1>>> for [T; 7]

source§

impl<T> From<GenericArray<T, UInt<UInt<UTerm, B1>, B0>>> for [T; 2]

source§

impl<T> From<GenericArray<T, UInt<UInt<UTerm, B1>, B1>>> for [T; 3]

source§

impl<T> From<GenericArray<T, UInt<UTerm, B1>>> for [T; 1]

source§

impl<T> From<Port<T>> for u16

source§

impl<T> From<Interval<T>> for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::ops::Range<T>
where T: IntervalBound,

source§

impl<T> From<Interval<T>> for RangeInclusive<T>
where T: IntervalBound,

source§

impl<T> From<Interval<T>> for IntervalSet<T>
where T: IntervalBound,

source§

impl<T> From<ClosedError> for PushError<T>

source§

impl<T> From<CtOption<T>> for Option<T>

source§

impl<T> From<TlsStream<T>> for TlsStream<T>

source§

impl<T> From<AsyncFdTryNewError<T>> for std::io::error::Error

source§

impl<T> From<Receiver<T>> for ReceiverStream<T>

source§

impl<T> From<SendError<T>> for tokio::sync::mpsc::error::TrySendError<T>

source§

impl<T> From<UnboundedReceiver<T>> for UnboundedReceiverStream<T>

source§

impl<T> From<Painted<T>> for Style

1.12.0 · source§

impl<T> From<T> for Option<T>

1.36.0 · source§

impl<T> From<T> for Poll<T>

source§

impl<T> From<T> for Expiration

source§

impl<T> From<T> for Form<T>

source§

impl<T> From<T> for Lenient<T>

source§

impl<T> From<T> for Strict<T>

§

impl<T> From<T> for Accept
where T: IntoIterator<Item = MediaType>,

source§

impl<T> From<T> for Json<T>

Available on crate feature json only.
source§

impl<T> From<T> for MsgPack<T>

Available on crate feature msgpack only.
1.6.0 · source§

impl<T> From<T> for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::boxed::Box<T>

1.6.0 · source§

impl<T> From<T> for Rc<T>

1.6.0 · source§

impl<T> From<T> for Arc<T>

1.70.0 · source§

impl<T> From<T> for core::cell::once::OnceCell<T>

1.12.0 · source§

impl<T> From<T> for Cell<T>

1.12.0 · source§

impl<T> From<T> for RefCell<T>

source§

impl<T> From<T> for SyncUnsafeCell<T>

1.12.0 · source§

impl<T> From<T> for UnsafeCell<T>

source§

impl<T> From<T> for Exclusive<T>

1.24.0 · source§

impl<T> From<T> for std::sync::mutex::Mutex<T>

1.70.0 · source§

impl<T> From<T> for OnceLock<T>

source§

impl<T> From<T> for ReentrantLock<T>

1.24.0 · source§

impl<T> From<T> for std::sync::rwlock::RwLock<T>

source§

impl<T> From<T> for allocator_api2::stable::boxed::Box<T>

source§

impl<T> From<T> for AtomicCell<T>

source§

impl<T> From<T> for CachePadded<T>

source§

impl<T> From<T> for ShardedLock<T>

source§

impl<T> From<T> for Profile
where T: AsRef<str>,

source§

impl<T> From<T> for Tagged<T>

source§

impl<T> From<T> for futures_util::lock::mutex::Mutex<T>

source§

impl<T> From<T> for Ratio<T>
where T: Clone + Integer,

source§

impl<T> From<T> for once_cell::sync::OnceCell<T>

source§

impl<T> From<T> for once_cell::unsync::OnceCell<T>

source§

impl<T> From<T> for Cursor<T>
where T: Copy,

source§

impl<T> From<T> for Extent<T>
where T: Length,

source§

impl<T> From<T> for s2n_quic_core::ct::Number<T>

source§

impl<T> From<T> for Connect
where T: Into<SocketAddress>,

Make it easy for applications to create a connection attempt without importing the Connect struct

source§

impl<T> From<T> for InitCell<T>

source§

impl<T> From<T> for tokio::sync::mutex::Mutex<T>

source§

impl<T> From<T> for tokio::sync::once_cell::OnceCell<T>

source§

impl<T> From<T> for tokio::sync::rwlock::RwLock<T>

§

impl<T> From<T> for Error
where T: Into<Box<dyn Error>>,

1.0.0 · source§

impl<T> From<T> for T

source§

impl<T, A> From<&[T]> for TinyVec<A>
where T: Clone + Default, A: Array<Item = T>,

source§

impl<T, A> From<&[T]> for allocator_api2::stable::boxed::Box<[T], A>
where T: Copy, A: Allocator + Default,

source§

impl<T, A> From<&mut [T]> for TinyVec<A>
where T: Clone + Default, A: Array<Item = T>,

1.18.0 · source§

impl<T, A> From<Box<[T], A>> for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::vec::Vec<T, A>
where A: Allocator,

1.21.0 · source§

impl<T, A> From<Box<T, A>> for Rc<T, A>
where A: Allocator, T: ?Sized,

1.21.0 · source§

impl<T, A> From<Box<T, A>> for Arc<T, A>
where A: Allocator, T: ?Sized,

1.33.0 · source§

impl<T, A> From<Box<T, A>> for Pin<Box<T, A>>
where A: Allocator + 'static, T: ?Sized,

1.5.0 · source§

impl<T, A> From<BinaryHeap<T, A>> for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::vec::Vec<T, A>
where A: Allocator,

1.10.0 · source§

impl<T, A> From<VecDeque<T, A>> for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::vec::Vec<T, A>
where A: Allocator,

1.20.0 · source§

impl<T, A> From<Vec<T, A>> for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::boxed::Box<[T], A>
where A: Allocator,

1.5.0 · source§

impl<T, A> From<Vec<T, A>> for BinaryHeap<T, A>
where T: Ord, A: Allocator,

1.10.0 · source§

impl<T, A> From<Vec<T, A>> for VecDeque<T, A>
where A: Allocator,

1.21.0 · source§

impl<T, A> From<Vec<T, A>> for Rc<[T], A>
where A: Allocator,

1.21.0 · source§

impl<T, A> From<Vec<T, A>> for Arc<[T], A>
where A: Allocator + Clone,

source§

impl<T, A> From<Box<[T], A>> for allocator_api2::stable::vec::Vec<T, A>
where A: Allocator,

source§

impl<T, A> From<Box<T, A>> for Pin<Box<T, A>>
where A: Allocator + 'static, T: ?Sized,

source§

impl<T, A> From<Vec<T, A>> for allocator_api2::stable::boxed::Box<[T], A>
where A: Allocator,

source§

impl<T, A, const N: usize> From<[T; N]> for hashbrown::set::HashSet<T, BuildHasherDefault<AHasher>, A>
where T: Eq + Hash, A: Default + Allocator,

source§

impl<T, A, const N: usize> From<Box<[T; N], A>> for allocator_api2::stable::vec::Vec<T, A>
where A: Allocator,

source§

impl<T, E> From<Response> for Poll<Result<T, E>>
where Response: Into<T>,

source§

impl<T, E> From<Response> for Poll<Result<T, E>>
where Response: Into<T>,

source§

impl<T, E> From<Response> for Poll<Result<T, E>>
where Response: Into<T>,

source§

impl<T, R> From<T> for SpinMutex<T, R>

source§

impl<T, R> From<T> for spin::mutex::Mutex<T, R>

source§

impl<T, R> From<T> for Once<T, R>

source§

impl<T, R> From<T> for spin::rwlock::RwLock<T, R>

source§

impl<T, S> From<&'static str> for Expected<T, S>

source§

impl<T, S> From<String> for Expected<T, S>

source§

impl<T, S, A> From<HashMap<T, (), S, A>> for hashbrown::set::HashSet<T, S, A>
where A: Allocator,

1.74.0 · source§

impl<T, const N: usize> From<&[T; N]> for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::vec::Vec<T>
where T: Clone,

1.74.0 · source§

impl<T, const N: usize> From<&mut [T; N]> for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::vec::Vec<T>
where T: Clone,

1.45.0 · source§

impl<T, const N: usize> From<[T; N]> for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::boxed::Box<[T]>

1.56.0 · source§

impl<T, const N: usize> From<[T; N]> for BTreeSet<T>
where T: Ord,

1.56.0 · source§

impl<T, const N: usize> From<[T; N]> for BinaryHeap<T>
where T: Ord,

1.56.0 · source§

impl<T, const N: usize> From<[T; N]> for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::collections::HashSet<T>
where T: Eq + Hash,

1.56.0 · source§

impl<T, const N: usize> From<[T; N]> for LinkedList<T>

1.56.0 · source§

impl<T, const N: usize> From<[T; N]> for VecDeque<T>

1.44.0 · source§

impl<T, const N: usize> From<[T; N]> for rocket::mtls::x509::der_parser::asn1_rs::nom::lib::std::vec::Vec<T>

1.74.0 · source§

impl<T, const N: usize> From<[T; N]> for Rc<[T]>

1.74.0 · source§

impl<T, const N: usize> From<[T; N]> for Arc<[T]>

source§

impl<T, const N: usize> From<[T; N]> for Simd<T, N>

source§

impl<T, const N: usize> From<[T; N]> for AHashSet<T>
where T: Eq + Hash,

source§

impl<T, const N: usize> From<[T; N]> for allocator_api2::stable::boxed::Box<[T]>

source§

impl<T, const N: usize> From<[T; N]> for allocator_api2::stable::vec::Vec<T>

source§

impl<T, const N: usize> From<[T; N]> for IndexSet<T>
where T: Eq + Hash,

source§

impl<T, const N: usize> From<Mask<T, N>> for [bool; N]

source§

impl<T, const N: usize> From<Simd<T, N>> for [T; N]

source§

impl<T, const N: usize> From<Mask<T, N>> for Simd<T, N>

source§

impl<T, const N: usize> From<[bool; N]> for Mask<T, N>

source§

impl<T: Unpin> From<T> for One<T>

Returns a One stream that will yield value exactly once.

§Example

use rocket::response::stream::One;

let mut stream = One::from("hello!");
source§

impl<T: AsRef<[u8]>> From<T> for Capped<T>

source§

impl<V> From<Vec<V>> for toml::value::Value
where V: Into<Value>,

source§

impl<W> From<Rc<W>> for LocalWaker
where W: LocalWake + 'static,

source§

impl<W> From<Rc<W>> for RawWaker
where W: LocalWake + 'static,

1.51.0 · source§

impl<W> From<Arc<W>> for RawWaker
where W: Wake + Send + Sync + 'static,

1.51.0 · source§

impl<W> From<Arc<W>> for Waker
where W: Wake + Send + Sync + 'static,

1.0.0 · source§

impl<W> From<IntoInnerError<W>> for std::io::error::Error

source§

impl<W> From<x4<W>> for vec512_storage
where W: Copy, vec128_storage: From<W>,

source§

impl<W, G> From<x2<W, G>> for vec256_storage
where W: Copy, vec128_storage: From<W>,

source§

impl<X> From<Range<X>> for rand::distributions::uniform::Uniform<X>
where X: SampleUniform,

source§

impl<X> From<Range<X>> for rand::distributions::uniform::Uniform<X>
where X: SampleUniform,

source§

impl<X> From<RangeInclusive<X>> for rand::distributions::uniform::Uniform<X>
where X: SampleUniform,

source§

impl<X> From<RangeInclusive<X>> for rand::distributions::uniform::Uniform<X>
where X: SampleUniform,

source§

impl<Z> From<Z> for Zeroizing<Z>
where Z: Zeroize,

source§

impl<const L: usize> From<&[u8; L]> for FixedLength<L>

source§

impl<const L: usize> From<[u8; L]> for FixedLength<L>

source§

impl<const MIN: i8, const MAX: i8> From<Option<RangedI8<MIN, MAX>>> for OptionRangedI8<MIN, MAX>

source§

impl<const MIN: i8, const MAX: i8> From<OptionRangedI8<MIN, MAX>> for Option<RangedI8<MIN, MAX>>

source§

impl<const MIN: i8, const MAX: i8> From<RangedI8<MIN, MAX>> for i8

source§

impl<const MIN: i8, const MAX: i8> From<RangedI8<MIN, MAX>> for OptionRangedI8<MIN, MAX>

source§

impl<const MIN: i16, const MAX: i16> From<Option<RangedI16<MIN, MAX>>> for OptionRangedI16<MIN, MAX>

source§

impl<const MIN: i16, const MAX: i16> From<OptionRangedI16<MIN, MAX>> for Option<RangedI16<MIN, MAX>>

source§

impl<const MIN: i16, const MAX: i16> From<RangedI16<MIN, MAX>> for i16

source§

impl<const MIN: i16, const MAX: i16> From<RangedI16<MIN, MAX>> for OptionRangedI16<MIN, MAX>

source§

impl<const MIN: i32, const MAX: i32> From<Option<RangedI32<MIN, MAX>>> for OptionRangedI32<MIN, MAX>

source§

impl<const MIN: i32, const MAX: i32> From<OptionRangedI32<MIN, MAX>> for Option<RangedI32<MIN, MAX>>

source§

impl<const MIN: i32, const MAX: i32> From<RangedI32<MIN, MAX>> for i32

source§

impl<const MIN: i32, const MAX: i32> From<RangedI32<MIN, MAX>> for OptionRangedI32<MIN, MAX>

source§

impl<const MIN: i64, const MAX: i64> From<Option<RangedI64<MIN, MAX>>> for OptionRangedI64<MIN, MAX>

source§

impl<const MIN: i64, const MAX: i64> From<OptionRangedI64<MIN, MAX>> for Option<RangedI64<MIN, MAX>>

source§

impl<const MIN: i64, const MAX: i64> From<RangedI64<MIN, MAX>> for i64

source§

impl<const MIN: i64, const MAX: i64> From<RangedI64<MIN, MAX>> for OptionRangedI64<MIN, MAX>

source§

impl<const MIN: i128, const MAX: i128> From<Option<RangedI128<MIN, MAX>>> for OptionRangedI128<MIN, MAX>

source§

impl<const MIN: i128, const MAX: i128> From<OptionRangedI128<MIN, MAX>> for Option<RangedI128<MIN, MAX>>

source§

impl<const MIN: i128, const MAX: i128> From<RangedI128<MIN, MAX>> for i128

source§

impl<const MIN: i128, const MAX: i128> From<RangedI128<MIN, MAX>> for OptionRangedI128<MIN, MAX>

source§

impl<const MIN: isize, const MAX: isize> From<Option<RangedIsize<MIN, MAX>>> for OptionRangedIsize<MIN, MAX>

source§

impl<const MIN: isize, const MAX: isize> From<OptionRangedIsize<MIN, MAX>> for Option<RangedIsize<MIN, MAX>>

source§

impl<const MIN: isize, const MAX: isize> From<RangedIsize<MIN, MAX>> for isize

source§

impl<const MIN: isize, const MAX: isize> From<RangedIsize<MIN, MAX>> for OptionRangedIsize<MIN, MAX>

source§

impl<const MIN: u8, const MAX: u8> From<Option<RangedU8<MIN, MAX>>> for OptionRangedU8<MIN, MAX>

source§

impl<const MIN: u8, const MAX: u8> From<OptionRangedU8<MIN, MAX>> for Option<RangedU8<MIN, MAX>>

source§

impl<const MIN: u8, const MAX: u8> From<RangedU8<MIN, MAX>> for u8

source§

impl<const MIN: u8, const MAX: u8> From<RangedU8<MIN, MAX>> for OptionRangedU8<MIN, MAX>

source§

impl<const MIN: u16, const MAX: u16> From<Option<RangedU16<MIN, MAX>>> for OptionRangedU16<MIN, MAX>

source§

impl<const MIN: u16, const MAX: u16> From<OptionRangedU16<MIN, MAX>> for Option<RangedU16<MIN, MAX>>

source§

impl<const MIN: u16, const MAX: u16> From<RangedU16<MIN, MAX>> for u16

source§

impl<const MIN: u16, const MAX: u16> From<RangedU16<MIN, MAX>> for OptionRangedU16<MIN, MAX>

source§

impl<const MIN: u32, const MAX: u32> From<Option<RangedU32<MIN, MAX>>> for OptionRangedU32<MIN, MAX>

source§

impl<const MIN: u32, const MAX: u32> From<OptionRangedU32<MIN, MAX>> for Option<RangedU32<MIN, MAX>>

source§

impl<const MIN: u32, const MAX: u32> From<RangedU32<MIN, MAX>> for u32

source§

impl<const MIN: u32, const MAX: u32> From<RangedU32<MIN, MAX>> for OptionRangedU32<MIN, MAX>

source§

impl<const MIN: u64, const MAX: u64> From<Option<RangedU64<MIN, MAX>>> for OptionRangedU64<MIN, MAX>

source§

impl<const MIN: u64, const MAX: u64> From<OptionRangedU64<MIN, MAX>> for Option<RangedU64<MIN, MAX>>

source§

impl<const MIN: u64, const MAX: u64> From<RangedU64<MIN, MAX>> for u64

source§

impl<const MIN: u64, const MAX: u64> From<RangedU64<MIN, MAX>> for OptionRangedU64<MIN, MAX>

source§

impl<const MIN: u128, const MAX: u128> From<Option<RangedU128<MIN, MAX>>> for OptionRangedU128<MIN, MAX>

source§

impl<const MIN: u128, const MAX: u128> From<OptionRangedU128<MIN, MAX>> for Option<RangedU128<MIN, MAX>>

source§

impl<const MIN: u128, const MAX: u128> From<RangedU128<MIN, MAX>> for u128

source§

impl<const MIN: u128, const MAX: u128> From<RangedU128<MIN, MAX>> for OptionRangedU128<MIN, MAX>

source§

impl<const MIN: usize, const MAX: usize> From<Option<RangedUsize<MIN, MAX>>> for OptionRangedUsize<MIN, MAX>

source§

impl<const MIN: usize, const MAX: usize> From<OptionRangedUsize<MIN, MAX>> for Option<RangedUsize<MIN, MAX>>

source§

impl<const MIN: usize, const MAX: usize> From<RangedUsize<MIN, MAX>> for usize

source§

impl<const MIN: usize, const MAX: usize> From<RangedUsize<MIN, MAX>> for OptionRangedUsize<MIN, MAX>

source§

impl<const N: usize> From<&[u8; N]> for PrefixedPayload

source§

impl<const N: usize> From<Mask<i8, N>> for Mask<i16, N>

source§

impl<const N: usize> From<Mask<i8, N>> for Mask<i32, N>

source§

impl<const N: usize> From<Mask<i8, N>> for Mask<i64, N>

source§

impl<const N: usize> From<Mask<i8, N>> for Mask<isize, N>

source§

impl<const N: usize> From<Mask<i16, N>> for Mask<i8, N>

source§

impl<const N: usize> From<Mask<i16, N>> for Mask<i32, N>

source§

impl<const N: usize> From<Mask<i16, N>> for Mask<i64, N>

source§

impl<const N: usize> From<Mask<i16, N>> for Mask<isize, N>

source§

impl<const N: usize> From<Mask<i32, N>> for Mask<i8, N>

source§

impl<const N: usize> From<Mask<i32, N>> for Mask<i16, N>

source§

impl<const N: usize> From<Mask<i32, N>> for Mask<i64, N>

source§

impl<const N: usize> From<Mask<i32, N>> for Mask<isize, N>

source§

impl<const N: usize> From<Mask<i64, N>> for Mask<i8, N>

source§

impl<const N: usize> From<Mask<i64, N>> for Mask<i16, N>

source§

impl<const N: usize> From<Mask<i64, N>> for Mask<i32, N>

source§

impl<const N: usize> From<Mask<i64, N>> for Mask<isize, N>

source§

impl<const N: usize> From<Mask<isize, N>> for Mask<i8, N>

source§

impl<const N: usize> From<Mask<isize, N>> for Mask<i16, N>

source§

impl<const N: usize> From<Mask<isize, N>> for Mask<i32, N>

source§

impl<const N: usize> From<Mask<isize, N>> for Mask<i64, N>