Record

Struct Record 

Source
pub struct Record<'r> { /* private fields */ }
Expand description

TLS Record Layer captured information

Implementations§

Source§

impl<'r> Record<'r>

Source

pub fn header_as_bytes(&self) -> &[u8]

Provide the header associated data

Source

pub fn as_bytes(&self) -> &[u8]

Provide the raw record in bytes without header

Source

pub fn content_type(&self) -> ContentType

Provide the Conten Type of the Record

Source

pub fn content(&'r self) -> &'r Content<'r>

Provide the Content of the Record

Source

pub fn parse_client_appdata( bytes: &'r [u8], ) -> Result<(Record<'r>, &'r [u8]), RecordError>

Only parse appdata in non-handshaking context

Source

pub fn parse_server<P: ServerRecordProcessor>( prc: &mut P, bytes: &'r [u8], ) -> Result<(Record<'r>, &'r [u8]), RecordError>

Parse incoming byte slics into TLS Recor types with the given RecordProcessor

Source

pub fn parse_client<P: ClientHelloProcessor>( prc: &mut P, bytes: &'r [u8], ) -> Result<(Record<'r>, &'r [u8]), RecordError>

Parse incoming byte slices into TLS Record types with the given HelloProcessor.

Trait Implementations§

Source§

impl<'r> Debug for Record<'r>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'r> Freeze for Record<'r>

§

impl<'r> RefUnwindSafe for Record<'r>

§

impl<'r> Send for Record<'r>

§

impl<'r> Sync for Record<'r>

§

impl<'r> Unpin for Record<'r>

§

impl<'r> UnwindSafe for Record<'r>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.