mirror of
https://forgejo.ellis.link/continuwuation/continuwuity.git
synced 2025-09-10 22:52:50 +02:00
7 lines
245 B
Rust
7 lines
245 B
Rust
//! Default allocator with no special features
|
|
|
|
/// Always returns the empty string
|
|
pub(crate) fn memory_stats() -> String { Default::default() }
|
|
|
|
/// Always returns the empty string
|
|
pub(crate) fn memory_usage() -> String { Default::default() }
|