2024-05-09 15:59:08 -07:00
|
|
|
//! 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() }
|
2024-05-09 15:59:08 -07:00
|
|
|
|
|
|
|
|
/// Always returns the empty string
|
|
|
|
|
#[must_use]
|
2024-06-02 00:21:08 +00:00
|
|
|
pub fn memory_usage() -> String { String::default() }
|