pub struct OpaqueMessage {
    pub typ: ContentType,
    pub version: ProtocolVersion,
    pub payload: Payload,
}Expand description
A TLS frame, named TLSPlaintext in the standard.
This type owns all memory for its interior parts. It is used to read/write from/to I/O
buffers as well as for fragmenting, joining and encryption/decryption. It can be converted
into a Message by decoding the payload.
Fields§
§typ: ContentType§version: ProtocolVersion§payload: PayloadImplementations§
Source§impl OpaqueMessage
 
impl OpaqueMessage
Sourcepub const MAX_WIRE_SIZE: usize = 18_437usize
 
pub const MAX_WIRE_SIZE: usize = 18_437usize
Maximum on-wire message size.
Sourcepub fn read(r: &mut Reader<'_>) -> Result<Self, MessageError>
 
pub fn read(r: &mut Reader<'_>) -> Result<Self, MessageError>
MessageError allows callers to distinguish between valid prefixes (might
become valid if we read more data) and invalid data.
pub fn encode(self) -> Vec<u8> ⓘ
Sourcepub fn into_plain_message(self) -> PlainMessage
 
pub fn into_plain_message(self) -> PlainMessage
Force conversion into a plaintext message.
This should only be used for messages that are known to be in plaintext. Otherwise, the
OpaqueMessage should be decrypted into a PlainMessage using a MessageDecrypter.
Trait Implementations§
Source§impl Clone for OpaqueMessage
 
impl Clone for OpaqueMessage
Source§fn clone(&self) -> OpaqueMessage
 
fn clone(&self) -> OpaqueMessage
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moreAuto Trait Implementations§
impl Freeze for OpaqueMessage
impl RefUnwindSafe for OpaqueMessage
impl Send for OpaqueMessage
impl Sync for OpaqueMessage
impl Unpin for OpaqueMessage
impl UnwindSafe for OpaqueMessage
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