1
0
Fork 0
mirror of https://forgejo.ellis.link/continuwuation/continuwuity.git synced 2025-07-28 10:48:30 +00:00
continuwuity/src/core/alloc/default.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
253 B
Rust
Raw Normal View History

//! Default allocator with no special features
/// Always returns the empty string
#[must_use]
2024-06-02 00:21:08 +00:00
pub fn memory_stats() -> String { String::default() }
/// Always returns the empty string
#[must_use]
2024-06-02 00:21:08 +00:00
pub fn memory_usage() -> String { String::default() }