ReadBufMut

Struct ReadBufMut 

Source
pub struct ReadBufMut<'a> { /* private fields */ }
Expand description

A type that grants mutable access to a ReadBuf.

You can create this by calling ReadBuf::as_mut.

Implementations§

Source§

impl<'a> ReadBufMut<'a>

Source

pub fn buf(&self) -> &ReadBuf<'a>

Get a shared reference to the internal buffer.

Source

pub unsafe fn buf_mut(&mut self) -> &mut ReadBuf<'a>

Get a mutable reference to the internal buffer.

§Safety

This must not be moved out of, and the buffer’s pointer to the bytes must not be changed.

Source

pub unsafe fn into_mut(self) -> &'a mut ReadBuf<'a>

Convert this type to a mutable reference to the internal buffer.

§Safety

This must not be moved out of, and the buffer’s pointer to the bytes must not be changed.

Source

pub fn as_mut(&mut self) -> ReadBufMut<'_>

Borrow the buffer, rather than consuming it.

Source§

impl ReadBufMut<'_>

These methods are also present on ReadBuf.

Source

pub fn capacity(&self) -> usize

Get the total capacity of the buffer.

Source

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

Get a shared reference to the filled portion of the buffer.

Source

pub fn filled_mut(&mut self) -> &mut [u8]

Get a mutable reference to the filled portion of the buffer.

Source

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

Get a shared reference to the initialized portion of the buffer.

This includes the filled portion.

Source

pub fn initialized_mut(&mut self) -> &mut [u8]

Get a mutable reference to the initialized portion of the buffer.

This includes the filled portion.

Source

pub unsafe fn unfilled_mut(&mut self) -> &mut [MaybeUninit<u8>]

Get a mutable reference to the unfilled part of the buffer without ensuring that it has been fully initialized.

§Safety

The caller must not deinitialize portions of the buffer that have already been initialized.

Source

pub fn all(&self) -> &[MaybeUninit<u8>]

Get a shared reference to the entire backing buffer.

Source

pub unsafe fn all_mut(&mut self) -> &mut [MaybeUninit<u8>]

Get a mutable reference to the entire backing buffer.

§Safety

The caller must not deinitialize portions of the buffer that have already been initialized.

Source

pub fn initialize_unfilled(&mut self) -> &mut [u8]

Get a mutable reference to the unfilled part of the buffer, ensuring it is fully

initialized.

Since ReadBuf tracks the region of the buffer that has been initialized, this is effectively “free” after the first use.

Source

pub fn initialize_unfilled_to(&mut self, n: usize) -> &mut [u8]

Get a mutable reference to the first n bytes of the unfilled part of the buffer, ensuring it is fully initialized.

§Panics

Panics if self.remaining() is less than n.

Source

pub fn remaining(&self) -> usize

Get the number of bytes at the end of the slice that have not yet been filled.

Source

pub fn clear(&mut self)

Clear the buffer, resetting the filled region to empty.

The number of initialized bytes is not changed, and the contents of the buffer is not modified.

Source

pub fn add_filled(&mut self, n: usize)

Increase the size of the filled region of the buffer by n bytes.

The number of initialized bytes is not changed.

§Panics

Panics if the filled region of the buffer would become larger than the initialized region.

Source

pub fn set_filled(&mut self, n: usize)

Set the size of the filled region of the buffer to n.

The number of initialized bytes is not changed.

Note that this can be used to shrink the filled region of the buffer in addition to growing it (for example, by a Read implementation that compresses data in-place).

§Panics

Panics if the filled region of the buffer would become larger than the initialized region.

Source

pub unsafe fn assume_init(&mut self, n: usize)

Asserts that the first n unfilled bytes of the buffer are initialized.

ReadBuf assumes that bytes are never deinitialized, so this method does nothing when called with fewer bytes than are already known to be initialized.

§Safety

The caller must ensure that the first n unfilled bytes of the buffer have already been initialized.

Source

pub fn append(&mut self, other: &[u8])

Appends data to the buffer, advancing the written position and possibly also the initialized position.

§Panics

Panics if self.remaining() is less than other.len().

Trait Implementations§

Source§

impl Debug for ReadBufMut<'_>

Source§

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

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

impl Send for ReadBufMut<'_>

Source§

impl Sync for ReadBufMut<'_>

Auto Trait Implementations§

§

impl<'a> Freeze for ReadBufMut<'a>

§

impl<'a> RefUnwindSafe for ReadBufMut<'a>

§

impl<'a> Unpin for ReadBufMut<'a>

§

impl<'a> UnwindSafe for ReadBufMut<'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> 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.