pub struct BufEncoder<const CAP: usize> { /* private fields */ }
Expand description

Hex-encodes bytes into the provided buffer.

This is an important building block for fast hex-encoding. Because string writing tools provided by core::fmt involve dynamic dispatch and don’t allow reserving capacity in strings buffering the hex and then formatting it is significantly faster.

Implementations§

source§

impl<const CAP: usize> BufEncoder<CAP>

source

pub fn new() -> Self

Creates an empty BufEncoder.

source

pub fn put_byte(&mut self, byte: u8, case: Case)

Encodes byte as hex in given case and appends it to the buffer.

§Panics

The method panics if the buffer is full.

source

pub fn put_bytes<I>(&mut self, bytes: I, case: Case)
where I: IntoIterator, I::Item: Borrow<u8>,

Encodes bytes as hex in given case and appends them to the buffer.

§Panics

The method panics if the bytes wouldn’t fit the buffer.

source

pub fn put_bytes_min<'a>(&mut self, bytes: &'a [u8], case: Case) -> &'a [u8]

Encodes as many bytes as fit into the buffer as hex and return the remainder.

This method works just like put_bytes but instead of panicking it returns the unwritten bytes. The method returns an empty slice if all bytes were written

source

pub fn is_full(&self) -> bool

Returns true if no more bytes can be written into the buffer.

source

pub fn as_str(&self) -> &str

Returns the written bytes as a hex str.

source

pub fn clear(&mut self)

Resets the buffer to become empty.

source

pub fn space_remaining(&self) -> usize

How many bytes can be written to this buffer.

Note that this returns the number of bytes before encoding, not number of hex digits.

Trait Implementations§

source§

impl<const CAP: usize> Default for BufEncoder<CAP>

source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

§

impl<const CAP: usize> RefUnwindSafe for BufEncoder<CAP>

§

impl<const CAP: usize> Send for BufEncoder<CAP>

§

impl<const CAP: usize> Sync for BufEncoder<CAP>

§

impl<const CAP: usize> Unpin for BufEncoder<CAP>

§

impl<const CAP: usize> UnwindSafe for BufEncoder<CAP>

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>,

§

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>,

§

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.