pub struct InboundPlainMessage<'a> {
pub typ: ContentType,
pub version: ProtocolVersion,
pub payload: &'a [u8],
}Expand description
A TLS frame, named TLSPlaintext in the standard.
This inbound type borrows its decrypted payload from a MessageDeframer.
It results from decryption.
Fields§
§typ: ContentType§version: ProtocolVersion§payload: &'a [u8]Trait Implementations§
Source§impl<'a> Debug for InboundPlainMessage<'a>
impl<'a> Debug for InboundPlainMessage<'a>
Source§impl<'a> TryFrom<InboundPlainMessage<'a>> for Message<'a>
Parses a plaintext message into a well-typed Message.
impl<'a> TryFrom<InboundPlainMessage<'a>> for Message<'a>
Parses a plaintext message into a well-typed Message.
A PlainMessage must contain plaintext content. Encrypted content should be stored in an
InboundOpaqueMessage and decrypted before being stored into a PlainMessage.
Auto Trait Implementations§
impl<'a> Freeze for InboundPlainMessage<'a>
impl<'a> RefUnwindSafe for InboundPlainMessage<'a>
impl<'a> Send for InboundPlainMessage<'a>
impl<'a> Sync for InboundPlainMessage<'a>
impl<'a> Unpin for InboundPlainMessage<'a>
impl<'a> UnwindSafe for InboundPlainMessage<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more