Fix default-trait-access

This commit is contained in:
Jason Volk 2024-06-02 00:21:08 +00:00
parent 9ebc47c57c
commit c1fd970473

View file

@ -2,8 +2,8 @@
/// Always returns the empty string /// Always returns the empty string
#[must_use] #[must_use]
pub fn memory_stats() -> String { Default::default() } pub fn memory_stats() -> String { String::default() }
/// Always returns the empty string /// Always returns the empty string
#[must_use] #[must_use]
pub fn memory_usage() -> String { Default::default() } pub fn memory_usage() -> String { String::default() }