mirror of
https://github.com/girlbossceo/conduwuit.git
synced 2026-03-27 13:44:37 -04:00
9 lines
219 B
Rust
9 lines
219 B
Rust
//! Default allocator with no special features
|
|
|
|
/// Always returns None
|
|
#[must_use]
|
|
pub fn memory_stats() -> Option<String> { None }
|
|
|
|
/// Always returns None
|
|
#[must_use]
|
|
pub fn memory_usage() -> Option<String> { None }
|