mirror of
https://github.com/girlbossceo/conduwuit.git
synced 2025-12-11 17:58:52 -05:00
9 lines
253 B
Rust
9 lines
253 B
Rust
//! Default allocator with no special features
|
|
|
|
/// Always returns the empty string
|
|
#[must_use]
|
|
pub fn memory_stats() -> String { String::default() }
|
|
|
|
/// Always returns the empty string
|
|
#[must_use]
|
|
pub fn memory_usage() -> String { String::default() }
|