pub struct GenericReadBufRef<'a, S: Storage<Item = u8> + ?Sized> { /* private fields */ }
Expand description

A wrapper around &mut GenericReadBuf which prevents the buffer that the GenericReadBuf points to from being replaced.

Implementations

Creates a new ReadBufRef referencing the same ReadBuf as this one.

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

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

This includes the filled portion.

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

Safety

The caller must not de-initialize portions of the buffer that have already been initialized.

Returns a mutable reference to the uninitialized part of the buffer.

It is safe to uninitialize any of these bytes.

Returns 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.

Returns 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.

Clears the buffer, resetting the filled region to empty.

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

Increases the size of the filled region of the buffer.

The number of initialized bytes is not changed.

Panics

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

Sets the size of the filled region of the buffer.

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.

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

ReadBuf assumes that bytes are never de-initialized, 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.

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

Panics

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

Methods from Deref<Target = GenericReadBuf<S>>

Returns the total capacity of the buffer.

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

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

This includes the filled portion.

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

Returns the amount of bytes that have been filled.

Returns the amount of bytes that have been initialized.

Trait Implementations

Formats the value using the given formatter. Read more

The resulting type after dereferencing.

Dereferences the value.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.