Crates.io | cap |
lib.rs | cap |
version | 0.1.2 |
source | src |
created_at | 2019-10-21 19:17:40.621832 |
updated_at | 2023-03-26 13:45:49.020054 |
description | An allocator that can track and limit memory usage. This crate provides a generic allocator that wraps another allocator, tracking memory usage and enabling limits to be set. |
homepage | https://github.com/alecmocatta/cap |
repository | https://github.com/alecmocatta/cap |
max_upload_size | |
id | 174528 |
size | 28,977 |
An allocator that can track and limit memory usage.
This crate provides a generic allocator that wraps another allocator, tracking memory usage and enabling limits to be set.
It can be used by declaring a static and marking it with the #[global_allocator]
attribute:
use std::alloc;
use cap::Cap;
#[global_allocator]
static ALLOCATOR: Cap<alloc::System> = Cap::new(alloc::System, usize::max_value());
fn main() {
// Set the limit to 30MiB.
ALLOCATOR.set_limit(30 * 1024 * 1024).unwrap();
// ...
println!("Currently allocated: {}B", ALLOCATOR.allocated());
}
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.