pub struct MemoryUsage {
pub allocated: Bytes,
}
Fields§
§allocated: Bytes
Implementations§
Source§impl MemoryUsage
impl MemoryUsage
pub fn now() -> MemoryUsage
Trait Implementations§
Source§impl Clone for MemoryUsage
impl Clone for MemoryUsage
Source§fn clone(&self) -> MemoryUsage
fn clone(&self) -> MemoryUsage
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Display for MemoryUsage
impl Display for MemoryUsage
Source§impl Sub for MemoryUsage
impl Sub for MemoryUsage
Source§type Output = MemoryUsage
type Output = MemoryUsage
The resulting type after applying the
-
operator.Source§fn sub(self, rhs: MemoryUsage) -> MemoryUsage
fn sub(self, rhs: MemoryUsage) -> MemoryUsage
Performs the
-
operation. Read moreimpl Copy for MemoryUsage
Auto Trait Implementations§
impl Freeze for MemoryUsage
impl RefUnwindSafe for MemoryUsage
impl Send for MemoryUsage
impl Sync for MemoryUsage
impl Unpin for MemoryUsage
impl UnwindSafe for MemoryUsage
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more