mirror of
https://forgejo.ellis.link/continuwuation/continuwuity.git
synced 2025-06-28 02:54:50 +02: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() }
|