Struct no_proto::NP_Size_Data[][src]

pub struct NP_Size_Data {
    pub current_buffer: usize,
    pub after_compaction: usize,
    pub wasted_bytes: usize,
}

When calling maybe_compact on a buffer, this struct is provided to help make a choice on wether to compact or not.

Fields

current_buffer: usize

The size of the existing buffer

after_compaction: usize

The estimated size of buffer after compaction

wasted_bytes: usize

How many known wasted bytes in existing buffer

Trait Implementations

impl Debug for NP_Size_Data[src]

impl Eq for NP_Size_Data[src]

impl PartialEq<NP_Size_Data> for NP_Size_Data[src]

impl StructuralEq for NP_Size_Data[src]

impl StructuralPartialEq for NP_Size_Data[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.