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

This deframer works to reconstruct TLS messages from arbitrary-sized reads, buffering as necessary. The input is read(), get the output from pop().

Implementations§

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

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

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.