pub struct MessageDeframer { /* private fields */ }
Expand description

This deframer works to reconstruct TLS messages from a stream of arbitrary-sized reads.

It buffers incoming data into a Vec through read(), and returns messages through pop(). QUIC connections will call push() to append handshake payload data directly.

Implementations

Return any decrypted messages that the deframer has been able to parse.

Returns an Error if the deframer failed to parse some message contents or if decryption failed, Ok(None) if no full message is buffered or if trial decryption failed, and Ok(Some(_)) if a valid message was found and decrypted successfully.

Read some bytes from rd, and add them to our internal buffer.

Returns true if we have messages for the caller to process, either whole messages in our output queue or partial messages in our buffer.

Trait Implementations

Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.