pub struct ReadBuf<'a> { /* private fields */ }
🔬 This is a nightly-only experimental API. (read_buf)
Expand description

A wrapper around a byte buffer that is incrementally filled and initialized.

This type is a sort of “double cursor”. It tracks three regions in the buffer: a region at the beginning of the buffer that has been logically filled with data, a region that has been initialized at some point but not yet logically filled, and a region at the end that is fully uninitialized. The filled region is guaranteed to be a subset of the initialized region.

In summary, the contents of the buffer can be visualized as:

[             capacity              ]
[ filled |         unfilled         ]
[    initialized    | uninitialized ]

Implementations

🔬 This is a nightly-only experimental API. (read_buf)

Creates a new ReadBuf from a fully initialized buffer.

🔬 This is a nightly-only experimental API. (read_buf)

Creates a new ReadBuf from a fully uninitialized buffer.

Use assume_init if part of the buffer is known to be already initialized.

🔬 This is a nightly-only experimental API. (read_buf)

Returns the total capacity of the buffer.

🔬 This is a nightly-only experimental API. (read_buf)

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

🔬 This is a nightly-only experimental API. (read_buf)

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

🔬 This is a nightly-only experimental API. (read_buf)

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

This includes the filled portion.

🔬 This is a nightly-only experimental API. (read_buf)

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

This includes the filled portion.

🔬 This is a nightly-only experimental API. (read_buf)

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.

🔬 This is a nightly-only experimental API. (read_buf)

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

It is safe to uninitialize any of these bytes.

🔬 This is a nightly-only experimental API. (read_buf)

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.

🔬 This is a nightly-only experimental API. (read_buf)

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.

🔬 This is a nightly-only experimental API. (read_buf)

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

🔬 This is a nightly-only experimental API. (read_buf)

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.

🔬 This is a nightly-only experimental API. (read_buf)

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.

🔬 This is a nightly-only experimental API. (read_buf)

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.

🔬 This is a nightly-only experimental API. (read_buf)

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.

🔬 This is a nightly-only experimental API. (read_buf)

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().

🔬 This is a nightly-only experimental API. (read_buf)

Returns the amount of bytes that have been filled.

🔬 This is a nightly-only experimental API. (read_buf)

Returns the amount of bytes that have been initialized.

Trait Implementations

Formats the value using the given formatter. Read more

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

Convert Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can then be further downcast into Box<ConcreteType> where ConcreteType implements Trait. Read more

Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait. Read more

Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s. Read more

Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s. Read more

Convert Arc<Trait> (where Trait: Downcast) to Arc<Any>. Arc<Any> can then be further downcast into Arc<ConcreteType> where ConcreteType implements Trait. Read more

Use this to cast from one trait object type to another. Read more

Use this to upcast a trait to one of its supertraits. Read more

Use this to cast from one trait object type to another. This method is more customizable than the dyn_cast method. Here you can also specify the “source” trait from which the cast is defined. This can for example allow using casts from a supertrait of the current trait object. Read more

Use this to cast from one trait object type to another. With this method the type parameter is a config type that uniquely specifies which cast should be preformed. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

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

Should always be Self

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.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more