pub struct PinnedPoolStats {
pub in_use: usize,
pub free: usize,
pub total: usize,
pub bytes_allocated: usize,
}Fields§
§in_use: usize§free: usize§total: usize§bytes_allocated: usizeTrait Implementations§
Source§impl Clone for PinnedPoolStats
impl Clone for PinnedPoolStats
Source§fn clone(&self) -> PinnedPoolStats
fn clone(&self) -> PinnedPoolStats
Returns a duplicate 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 Debug for PinnedPoolStats
impl Debug for PinnedPoolStats
impl Copy for PinnedPoolStats
Auto Trait Implementations§
impl Freeze for PinnedPoolStats
impl RefUnwindSafe for PinnedPoolStats
impl Send for PinnedPoolStats
impl Sync for PinnedPoolStats
impl Unpin for PinnedPoolStats
impl UnsafeUnpin for PinnedPoolStats
impl UnwindSafe for PinnedPoolStats
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