EncoderLenEstimator

Struct EncoderLenEstimator 

Source
pub struct EncoderLenEstimator { /* private fields */ }
Expand description

Estimates the encoding_size of an EncoderValue

Implementations§

Source§

impl EncoderLenEstimator

Source

pub const fn new(capacity: usize) -> Self

Create a new estimator with a given buffer capacity

Source

pub const fn overflowed(&self) -> bool

Returns true when the estimated len is greater than the allocated buffer capacity.

Trait Implementations§

Source§

impl Encoder for EncoderLenEstimator

Source§

fn write_sized<F: FnOnce(&mut [u8])>(&mut self, len: usize, _write: F)

Calls write with a slice of len bytes at the current write position
Source§

fn write_slice(&mut self, slice: &[u8])

Copies the slice into the buffer
Source§

fn write_repeated(&mut self, count: usize, _value: u8)

Repeatedly write a byte value for a given count Read more
Source§

fn write_zerocopy<T: FromBytes + Unaligned, F: FnOnce(&mut T)>( &mut self, _write: F, )

Writes a zerocopy value to the buffer
Source§

fn capacity(&self) -> usize

Returns the total buffer capacity
Source§

fn len(&self) -> usize

Returns the number of bytes written to the buffer
Source§

const SPECIALIZES_BYTES: bool = false

Set to true if the particular encoder specializes on the bytes implementation
Source§

fn encode<T: EncoderValue>(&mut self, value: &T)

Encode the given EncoderValue into the buffer
Source§

fn encode_with_len_prefix<Len: TryFrom<usize> + EncoderValue, T: EncoderValue>( &mut self, value: &T, )
where Len::Error: Debug,

Encode the given EncoderValue into the buffer with a prefix of Len
Source§

fn write_bytes(&mut self, bytes: Bytes)

Source§

fn is_empty(&self) -> bool

Returns true if no bytes have been written
Source§

fn remaining_capacity(&self) -> usize

Returns the number of available bytes in the buffer

Auto Trait Implementations§

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.