#memory #utilities #allocator #collection #define #tetsy #estimate-heapsize

sys no-std tetsy-util-mem

Collection of tetsy memory related utilities

Show the crate…

8 releases (5 breaking)

0.9.1 Jun 8, 2021
0.9.0 Feb 18, 2021
0.8.0 Mar 10, 2021
0.5.2 Feb 25, 2021
0.2.0 Feb 20, 2021

#13 in #tetsy

Download history 154/week @ 2024-11-16 361/week @ 2024-11-23 372/week @ 2024-11-30 623/week @ 2024-12-07 494/week @ 2024-12-14 202/week @ 2024-12-21 98/week @ 2024-12-28 198/week @ 2025-01-04 261/week @ 2025-01-11 286/week @ 2025-01-18 166/week @ 2025-01-25 180/week @ 2025-02-01 259/week @ 2025-02-08 229/week @ 2025-02-15 220/week @ 2025-02-22 114/week @ 2025-03-01

877 downloads per month
Used in 217 crates (30 directly)

MIT/Apache

61KB
1K SLoC

tetsy-util-mem

Collection of memory related utilities.

WARNING

When tetsy-util-mem is used as a dependency with any of the global allocator features enabled, it must be the sole place where a global allocator is defined. The only exception to this rule is when used in a no_std context or when the estimate-heapsize feature is used.

Because of that, it must be present in the dependency tree with a single version. Starting from version 0.6.1, having duplicate versions of tetsy-util-mem will lead to a compile-time error. It still will be possible to have 0.5 and 0.6.1 versions in the same binary though.

Unless heeded you risk UB; see discussion in issue 364.

Features

  • estimate-heapsize : Do not use allocator, but size_of or size_of_val.

Others features define global allocator, see src/alloc.rs.

Dependency

This crate groups common dependency, a patched copy of unpublished malloc_size_of from servo project is copied and partially reexported.

Malloc_size_of code is used internally as a module with a few modification to be able to implement type locally.

For existing code using deprecated HeapsizeOf crate, calls to heapsize_of_children should be replace by calls to size_of.

Dependencies

~1.6–9.5MB
~88K SLoC