Struct rustls::crypto::cipher::OutboundPlainMessage
source · pub struct OutboundPlainMessage<'a> {
pub typ: ContentType,
pub version: ProtocolVersion,
pub payload: OutboundChunks<'a>,
}
Expand description
A TLS frame, named TLSPlaintext
in the standard.
This outbound type borrows its “to be encrypted” payload from the “user”. It is used for fragmenting and is consumed by encryption.
Fields§
§typ: ContentType
§version: ProtocolVersion
§payload: OutboundChunks<'a>
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for OutboundPlainMessage<'a>
impl<'a> RefUnwindSafe for OutboundPlainMessage<'a>
impl<'a> Send for OutboundPlainMessage<'a>
impl<'a> Sync for OutboundPlainMessage<'a>
impl<'a> Unpin for OutboundPlainMessage<'a>
impl<'a> UnwindSafe for OutboundPlainMessage<'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