Crates.io | memuse |
lib.rs | memuse |
version | 0.2.1 |
source | src |
created_at | 2021-09-03 18:17:07.93674 |
updated_at | 2022-09-24 02:18:44.5271 |
description | Traits for measuring dynamic memory usage of types |
homepage | https://github.com/str4d/memuse |
repository | https://github.com/str4d/memuse |
max_upload_size | |
id | 446574 |
size | 41,804 |
This crate contains traits for measuring the dynamic memory usage of Rust types.
Memory-tracking is a common activity in large applications, particularly ones that receive data from a network and store it in memory. By monitoring how much memory is used by different areas of the application, memory pressure can be alleviated by ignoring new packets, or implementing random drop logic for DoS mitigation.
Measuring memory use on the stack is easy, with std::mem::size_of
and
friends. Measuring memory allocated on the heap is more tricky. Applications can
use a custom global allocator to track the memory usage of different areas. This
isn't an option for reusable library code however, and the nearest alternative
(using custom allocators for individual types) is currently only an experimental
feature in nightly Rust (allocator_api
).
This crate takes a different approach: it provides traits that library authors can use to expose dynamic memory usage information on their types. By composing these implementations, we gain the ability to query the amount of heap-allocated memory in use by specific instances of types at any point in time, without any changes to the way in which these types are constructed.
Rust 1.51 or newer.
In the future, we reserve the right to change MSRV (i.e. MSRV is out-of-scope for this crate's SemVer guarantees), however when we do it will be accompanied by a minor version bump.
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.