[][src]Struct rustls::internal::msgs::message::Message

pub struct Message {
    pub typ: ContentType,
    pub version: ProtocolVersion,
    pub payload: MessagePayload,
}

A TLS frame, named TLSPlaintext in the standard. This type owns all memory for its interior parts.

Fields

typ: ContentTypeversion: ProtocolVersionpayload: MessagePayload

Methods

impl Message
[src]

pub fn check_header(bytes: &[u8]) -> Option<usize>
[src]

Do some very lax checks on the header, and return None if it looks really broken. Otherwise, return the length field.

pub fn is_content_type(&self, typ: ContentType) -> bool
[src]

pub fn is_handshake_type(&self, hstyp: HandshakeType) -> bool
[src]

pub fn decode_payload(&mut self) -> bool
[src]

pub fn take_payload(self) -> Vec<u8>
[src]

pub fn take_opaque_payload(&mut self) -> Option<Payload>
[src]

pub fn into_opaque(self) -> Message
[src]

pub fn build_alert(level: AlertLevel, desc: AlertDescription) -> Message
[src]

pub fn build_key_update_notify() -> Message
[src]

impl<'a> Message
[src]

pub fn to_borrowed(&'a self) -> BorrowMessage<'a>
[src]

Trait Implementations

impl Codec for Message
[src]

fn get_encoding(&self) -> Vec<u8>
[src]

Convenience function to get the results of encode().

fn read_bytes(bytes: &[u8]) -> Option<Self>
[src]

Read one of these from the front of bytes and return it. Read more

impl Debug for Message
[src]

Auto Trait Implementations

impl Send for Message

impl Sync for Message

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]