pub struct MemoryDetailedStats {Show 29 fields
pub total_pgmajfault: Option<f64>,
pub cache: Option<f64>,
pub mapped_file: Option<f64>,
pub total_inactive_file: Option<f64>,
pub pgpgout: Option<f64>,
pub rss: Option<f64>,
pub total_mapped_file: Option<f64>,
pub writeback: Option<f64>,
pub unevictable: Option<f64>,
pub pgpgin: Option<f64>,
pub total_unevictable: Option<f64>,
pub pgmajfault: Option<f64>,
pub total_rss: Option<f64>,
pub total_rss_huge: Option<f64>,
pub total_writeback: Option<f64>,
pub total_inactive_anon: Option<f64>,
pub rss_huge: Option<f64>,
pub hierarchical_memory_limit: Option<f64>,
pub total_pgfault: Option<f64>,
pub total_active_file: Option<f64>,
pub active_anon: Option<f64>,
pub total_active_anon: Option<f64>,
pub total_pgpgout: Option<f64>,
pub total_cache: Option<f64>,
pub inactive_anon: Option<f64>,
pub active_file: Option<f64>,
pub pgfault: Option<f64>,
pub inactive_file: Option<f64>,
pub total_pgpgin: Option<f64>,
}
Fields§
§total_pgmajfault: Option<f64>
§cache: Option<f64>
§mapped_file: Option<f64>
§total_inactive_file: Option<f64>
§pgpgout: Option<f64>
§rss: Option<f64>
§total_mapped_file: Option<f64>
§writeback: Option<f64>
§unevictable: Option<f64>
§pgpgin: Option<f64>
§total_unevictable: Option<f64>
§pgmajfault: Option<f64>
§total_rss: Option<f64>
§total_rss_huge: Option<f64>
§total_writeback: Option<f64>
§total_inactive_anon: Option<f64>
§rss_huge: Option<f64>
§hierarchical_memory_limit: Option<f64>
§total_pgfault: Option<f64>
§total_active_file: Option<f64>
§active_anon: Option<f64>
§total_active_anon: Option<f64>
§total_pgpgout: Option<f64>
§total_cache: Option<f64>
§inactive_anon: Option<f64>
§active_file: Option<f64>
§pgfault: Option<f64>
§inactive_file: Option<f64>
§total_pgpgin: Option<f64>
Trait Implementations§
Source§impl Clone for MemoryDetailedStats
impl Clone for MemoryDetailedStats
Source§fn clone(&self) -> MemoryDetailedStats
fn clone(&self) -> MemoryDetailedStats
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 MemoryDetailedStats
impl Debug for MemoryDetailedStats
Source§impl<'de> Deserialize<'de> for MemoryDetailedStats
impl<'de> Deserialize<'de> for MemoryDetailedStats
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for MemoryDetailedStats
impl RefUnwindSafe for MemoryDetailedStats
impl Send for MemoryDetailedStats
impl Sync for MemoryDetailedStats
impl Unpin for MemoryDetailedStats
impl UnwindSafe for MemoryDetailedStats
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