Enum rustls::crypto::cipher::OutboundChunks

source ·
pub enum OutboundChunks<'a> {
    Single(&'a [u8]),
    Multiple {
        chunks: &'a [&'a [u8]],
        start: usize,
        end: usize,
    },
}
Expand description

A collection of borrowed plaintext slices.

Warning: OutboundChunks does not guarantee that the simplest variant is used. Multiple can hold non fragmented or empty payloads.

Variants§

§

Single(&'a [u8])

A single byte slice. Contrary to Multiple, this uses a single pointer indirection

§

Multiple

A collection of chunks (byte slices) and cursors to single out a fragmented range of bytes. OutboundChunks assumes that start <= end

Fields

§chunks: &'a [&'a [u8]]
§start: usize
§end: usize

Implementations§

source§

impl<'a> OutboundChunks<'a>

source

pub fn new(chunks: &'a [&'a [u8]]) -> Self

Create a payload from a slice of byte slices. If fragmented the cursors are added by default: start = 0, end = length

source

pub fn new_empty() -> Self

Create a payload with a single empty slice

source

pub fn to_vec(&self) -> Vec<u8>

Flatten the slice of byte slices to an owned vector of bytes

source

pub fn copy_to_vec(&self, vec: &mut Vec<u8>)

Append all bytes to a vector

source

pub fn split_at(&self, mid: usize) -> (Self, Self)

Split self in two, around an index Works similarly to split_at in the core library, except it doesn’t panic if out of bound

source

pub fn is_empty(&self) -> bool

Returns true if the payload is empty

source

pub fn len(&self) -> usize

Returns the cumulative length of all chunks

Trait Implementations§

source§

impl<'a> Clone for OutboundChunks<'a>

source§

fn clone(&self) -> OutboundChunks<'a>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'a> Debug for OutboundChunks<'a>

source§

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

Formats the value using the given formatter. Read more
source§

impl<'a> From<&'a [u8]> for OutboundChunks<'a>

source§

fn from(payload: &'a [u8]) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

§

impl<'a> Freeze for OutboundChunks<'a>

§

impl<'a> RefUnwindSafe for OutboundChunks<'a>

§

impl<'a> Send for OutboundChunks<'a>

§

impl<'a> Sync for OutboundChunks<'a>

§

impl<'a> Unpin for OutboundChunks<'a>

§

impl<'a> UnwindSafe for OutboundChunks<'a>

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> CloneToUninit for T
where T: Clone,

source§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

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

§

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>,

§

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.