pub trait MemCounter:
Send
+ Sync
+ 'static {
// Required methods
fn add(&self, bytes: i64);
fn get_bytes_used(&self) -> i64;
}
pub trait MemCounter:
Send
+ Sync
+ 'static {
// Required methods
fn add(&self, bytes: i64);
fn get_bytes_used(&self) -> i64;
}