17 releases

0.2.15 Sep 11, 2023
0.2.14 Mar 8, 2023
0.2.13 Dec 27, 2022
0.2.11 Nov 4, 2022
0.2.3 Nov 18, 2020

#20 in #accurate

Download history 1943/week @ 2024-01-03 2476/week @ 2024-01-10 2384/week @ 2024-01-17 1887/week @ 2024-01-24 2330/week @ 2024-01-31 2190/week @ 2024-02-07 3600/week @ 2024-02-14 3464/week @ 2024-02-21 2160/week @ 2024-02-28 2382/week @ 2024-03-06 2486/week @ 2024-03-13 2164/week @ 2024-03-20 2003/week @ 2024-03-27 2093/week @ 2024-04-03 1872/week @ 2024-04-10 1354/week @ 2024-04-17

7,834 downloads per month
Used in 30 crates (via datasize)

MIT/Apache

21KB
414 lines

data_size::<T>(&T)

The datasize crate is used for for estimating the heap memory usage of values, e.g. the number of bytes used by a Vec outside its on-stack size determined by mem::size_of.

datasize is intended for rough benchmarks, typically to find memory hogs (it won't find memory leaks, as memory that is not reachable will not be reported). While it may not give entirely accurate readings in all situations, it will quickly identify low-hanging fruit.

Example

The DataSize trait is implemented for many primitive and std types, and can be derived for structs and others:

use datasize::DataSize;

#[derive(DataSize)]
struct Example {
    count: usize,
    my_data: Vec<MyStruct>,
    warning: Option<Box<u32>>,
    #[data_size(skip)]
    skipped: Box<char>,
}

Any instance ex of the Example can now report an estimate of its heap allocation through data_size(&ex).

Other works

Other crates suitable for this task are heapsize and malloc_size_of. Unfortunately the heapsize crate has been discontinued and the malloc_size_of crate puts some rather heavy constraints on what allocator can be used.


lib.rs:

Proc-macro DataSize derive for use with the datasize crate.

Dependencies

~1.5MB
~34K SLoC