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