BufferWriter

Struct BufferWriter 

Source
pub struct BufferWriter<'a>(/* private fields */);
Expand description

A zero-copy mutable buffer writer.

Implementations§

Source§

impl<'a> BufferWriter<'a>

Source

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

Creates an BufferWriter by using bytes as inner buffer.

Inner offset is initialized to zero.

Source

pub fn capacity(&self) -> usize

Returns the remaining capacity in the buffer.

Source

pub fn offset(&self) -> usize

Returns the current offset of the buffer.

Source

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

Returns the portion of the inner buffer written so far.

Trait Implementations§

Source§

impl BytesWriter for BufferWriter<'_>

Source§

fn put_varint(&mut self, varint: VarInt) -> Result<(), EndOfBuffer>

Writes an unsigned variable-length integer in network byte-order at the current offset and advances the offset. Read more
Source§

fn put_bytes(&mut self, bytes: &[u8]) -> Result<(), EndOfBuffer>

Writes (by copy) all bytes at the current offset and advances it. Read more

Auto Trait Implementations§

§

impl<'a> Freeze for BufferWriter<'a>

§

impl<'a> RefUnwindSafe for BufferWriter<'a>

§

impl<'a> Send for BufferWriter<'a>

§

impl<'a> Sync for BufferWriter<'a>

§

impl<'a> Unpin for BufferWriter<'a>

§

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