#[non_exhaustive]
pub enum InvalidMessage {
Show 20 variants HandshakePayloadTooLarge, InvalidCcs, InvalidContentType, InvalidCertificateStatusType, InvalidCertRequest, InvalidDhParams, InvalidEmptyPayload, InvalidKeyUpdate, InvalidServerName, MessageTooLarge, MessageTooShort, MissingData(&'static str), MissingKeyExchange, NoSignatureSchemes, TrailingData(&'static str), UnexpectedMessage(&'static str), UnknownProtocolVersion, UnsupportedCompression, UnsupportedCurveType, UnsupportedKeyExchangeAlgorithm(KeyExchangeAlgorithm),
}
Expand description

A corrupt TLS message payload that resulted in an error.

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

HandshakePayloadTooLarge

An advertised message was larger then expected.

§

InvalidCcs

The peer sent us a syntactically incorrect ChangeCipherSpec payload.

§

InvalidContentType

An unknown content type was encountered during message decoding.

§

InvalidCertificateStatusType

A peer sent an invalid certificate status type

§

InvalidCertRequest

Context was incorrectly attached to a certificate request during a handshake.

§

InvalidDhParams

A peer’s DH params could not be decoded

§

InvalidEmptyPayload

A message was zero-length when its record kind forbids it.

§

InvalidKeyUpdate

A peer sent an unexpected key update request.

§

InvalidServerName

A peer’s server name could not be decoded

§

MessageTooLarge

A TLS message payload was larger then allowed by the specification.

§

MessageTooShort

Message is shorter than the expected length

§

MissingData(&'static str)

Missing data for the named handshake payload value

§

MissingKeyExchange

A peer did not advertise its supported key exchange groups.

§

NoSignatureSchemes

A peer sent an empty list of signature schemes

§

TrailingData(&'static str)

Trailing data found for the named handshake payload value

§

UnexpectedMessage(&'static str)

A peer sent an unexpected message type.

§

UnknownProtocolVersion

An unknown TLS protocol was encountered during message decoding.

§

UnsupportedCompression

A peer sent a non-null compression method.

§

UnsupportedCurveType

A peer sent an unknown elliptic curve type.

§

UnsupportedKeyExchangeAlgorithm(KeyExchangeAlgorithm)

A peer sent an unsupported key exchange algorithm.

Trait Implementations§

source§

impl Clone for InvalidMessage

source§

fn clone(&self) -> InvalidMessage

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for InvalidMessage

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<InvalidMessage> for Error

source§

fn from(e: InvalidMessage) -> Self

Converts to this type from the input type.
source§

impl PartialEq<InvalidMessage> for InvalidMessage

source§

fn eq(&self, other: &InvalidMessage) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for InvalidMessage

source§

impl StructuralPartialEq for InvalidMessage

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.