pub(crate) struct VecWithInitialized<V> {
    vec: V,
    num_initialized: usize,
    starting_capacity: usize,
}
Expand description

This struct wraps a Vec<u8> or &mut Vec<u8>, combining it with a num_initialized, which keeps track of the number of initialized bytes in the unused capacity.

The purpose of this struct is to remember how many bytes were initialized through a ReadBuf from call to call.

This struct has the safety invariant that the first num_initialized of the vector’s allocation must be initialized at any time.

Fields§

§vec: V§num_initialized: usize§starting_capacity: usize

Implementations§

source§

impl VecWithInitialized<Vec<u8>>

source

pub(crate) fn take(&mut self) -> Vec<u8>

source§

impl<V> VecWithInitialized<V>where V: VecU8,

source

pub(crate) fn new(vec: V) -> Self

source

pub(crate) fn reserve(&mut self, num_bytes: usize)

source

pub(crate) fn is_empty(&self) -> bool

source

pub(crate) fn get_read_buf<'a>(&'a mut self) -> ReadBuf<'a>

source

pub(crate) fn apply_read_buf(&mut self, parts: ReadBufParts)

source

pub(crate) fn try_small_read_first(&self, num_bytes: usize) -> bool

Trait Implementations§

source§

impl<V: Debug> Debug for VecWithInitialized<V>

source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<V> RefUnwindSafe for VecWithInitialized<V>where V: RefUnwindSafe,

§

impl<V> Send for VecWithInitialized<V>where V: Send,

§

impl<V> Sync for VecWithInitialized<V>where V: Sync,

§

impl<V> Unpin for VecWithInitialized<V>where V: Unpin,

§

impl<V> UnwindSafe for VecWithInitialized<V>where V: UnwindSafe,

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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 Twhere 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 Twhere 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.