pub struct SimpleAllocatorStats {
pub regions: usize,
pub total_words: usize,
pub allocated_words: usize,
pub unused_words: usize,
pub fragment_words: usize,
pub fragments: usize,
}Fields§
§regions: usize§total_words: usize§allocated_words: usize§unused_words: usize§fragment_words: usize§fragments: usizeTrait Implementations§
Source§impl Debug for SimpleAllocatorStats
impl Debug for SimpleAllocatorStats
Auto Trait Implementations§
impl Freeze for SimpleAllocatorStats
impl RefUnwindSafe for SimpleAllocatorStats
impl Send for SimpleAllocatorStats
impl Sync for SimpleAllocatorStats
impl Unpin for SimpleAllocatorStats
impl UnwindSafe for SimpleAllocatorStats
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