2024-05-09 15:59:08 -07:00
|
|
|
//! Default allocator with no special features
|
|
|
|
|
|
2024-07-09 21:55:56 +00:00
|
|
|
/// Always returns None
|
2024-05-09 15:59:08 -07:00
|
|
|
#[must_use]
|
2024-07-09 21:55:56 +00:00
|
|
|
pub fn memory_stats() -> Option<String> { None }
|
2024-05-09 15:59:08 -07:00
|
|
|
|
2024-07-09 21:55:56 +00:00
|
|
|
/// Always returns None
|
2024-05-09 15:59:08 -07:00
|
|
|
#[must_use]
|
2024-07-09 21:55:56 +00:00
|
|
|
pub fn memory_usage() -> Option<String> { None }
|