pub struct OverallUtilization {
pub total_managed_memory_bytes: usize,
pub buffer_utilization: PoolUtilization,
pub row_utilization: PoolUtilization,
pub memory_in_use_bytes: usize,
}Expand description
Overall memory pool utilization
Fields§
§total_managed_memory_bytes: usize§buffer_utilization: PoolUtilization§row_utilization: PoolUtilization§memory_in_use_bytes: usizeTrait Implementations§
Source§impl Clone for OverallUtilization
impl Clone for OverallUtilization
Source§fn clone(&self) -> OverallUtilization
fn clone(&self) -> OverallUtilization
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 OverallUtilization
impl Debug for OverallUtilization
Source§impl PartialEq for OverallUtilization
impl PartialEq for OverallUtilization
Source§fn eq(&self, other: &OverallUtilization) -> bool
fn eq(&self, other: &OverallUtilization) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for OverallUtilization
Auto Trait Implementations§
impl Freeze for OverallUtilization
impl RefUnwindSafe for OverallUtilization
impl Send for OverallUtilization
impl Sync for OverallUtilization
impl Unpin for OverallUtilization
impl UnsafeUnpin for OverallUtilization
impl UnwindSafe for OverallUtilization
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