Trait vector_lib::ByteSizeOf

pub trait ByteSizeOf {
    // Required method
    fn allocated_bytes(&self) -> usize;

    // Provided method
    fn size_of(&self) -> usize { ... }
}

Required Methods§

fn allocated_bytes(&self) -> usize

Returns the allocated bytes of this type

This function returns the total number of bytes that have been allocated interior to this type instance. It does not include any bytes that are captured by std::mem::size_of except for any bytes that are interior to this type. For instance, BTreeMap<String, Vec<u8>> would count all bytes for String and Vec<u8> instances but not the exterior bytes for BTreeMap.

Provided Methods§

fn size_of(&self) -> usize

Returns the in-memory size of this type

This function returns the total number of bytes that std::mem::size_of does in addition to any interior allocated bytes. Its default implementation is std::mem::size_of + ByteSizeOf::allocated_bytes.

Implementations on Foreign Types§

§

impl ByteSizeOf for Value

§

impl ByteSizeOf for f32

§

impl ByteSizeOf for f64

§

impl ByteSizeOf for i8

§

impl ByteSizeOf for i16

§

impl ByteSizeOf for i32

§

impl ByteSizeOf for i64

§

impl ByteSizeOf for i128

§

impl ByteSizeOf for u8

§

impl ByteSizeOf for u16

§

impl ByteSizeOf for u32

§

impl ByteSizeOf for u64

§

impl ByteSizeOf for u128

§

impl ByteSizeOf for Box<RawValue>

§

impl ByteSizeOf for String

§

impl ByteSizeOf for DateTime<Utc>

§

impl ByteSizeOf for Bytes

§

impl ByteSizeOf for BytesMut

§

impl<'a> ByteSizeOf for &'a str

§

impl<'a, T> ByteSizeOf for &'a T
where T: ByteSizeOf,

§

impl<A> ByteSizeOf for SmallVec<A>
where A: Array, <A as Array>::Item: ByteSizeOf,

§

impl<K, V> ByteSizeOf for BTreeMap<K, V>
where K: ByteSizeOf, V: ByteSizeOf,

§

impl<K, V> ByteSizeOf for IndexMap<K, V>
where K: ByteSizeOf, V: ByteSizeOf,

§

impl<T> ByteSizeOf for &[T]
where T: ByteSizeOf,

§

impl<T> ByteSizeOf for Option<T>
where T: ByteSizeOf,

§

impl<T> ByteSizeOf for BTreeSet<T>
where T: ByteSizeOf,

§

impl<T> ByteSizeOf for Vec<T>
where T: ByteSizeOf,

§

impl<T> ByteSizeOf for IndexSet<T>
where T: ByteSizeOf,

§

impl<T, const N: usize> ByteSizeOf for [T; N]
where T: ByteSizeOf,

§

fn size_of(&self) -> usize

§

fn allocated_bytes(&self) -> usize

Implementors§