#[repr(C)]pub struct zx_info_kmem_stats_t {Show 19 fields
    pub total_bytes: u64,
    pub free_bytes: u64,
    pub free_loaned_bytes: u64,
    pub wired_bytes: u64,
    pub total_heap_bytes: u64,
    pub free_heap_bytes: u64,
    pub vmo_bytes: u64,
    pub mmu_overhead_bytes: u64,
    pub ipc_bytes: u64,
    pub cache_bytes: u64,
    pub slab_bytes: u64,
    pub zram_bytes: u64,
    pub other_bytes: u64,
    pub vmo_reclaim_total_bytes: u64,
    pub vmo_reclaim_newest_bytes: u64,
    pub vmo_reclaim_oldest_bytes: u64,
    pub vmo_reclaim_disabled_bytes: u64,
    pub vmo_discardable_locked_bytes: u64,
    pub vmo_discardable_unlocked_bytes: u64,
}Fields§
§total_bytes: u64§free_bytes: u64§free_loaned_bytes: u64§wired_bytes: u64§total_heap_bytes: u64§free_heap_bytes: u64§vmo_bytes: u64§mmu_overhead_bytes: u64§ipc_bytes: u64§cache_bytes: u64§slab_bytes: u64§zram_bytes: u64§other_bytes: u64§vmo_reclaim_total_bytes: u64§vmo_reclaim_newest_bytes: u64§vmo_reclaim_oldest_bytes: u64§vmo_reclaim_disabled_bytes: u64§vmo_discardable_locked_bytes: u64§vmo_discardable_unlocked_bytes: u64Trait Implementations§
Source§impl Clone for zx_info_kmem_stats_t
 
impl Clone for zx_info_kmem_stats_t
Source§fn clone(&self) -> zx_info_kmem_stats_t
 
fn clone(&self) -> zx_info_kmem_stats_t
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 zx_info_kmem_stats_t
 
impl Debug for zx_info_kmem_stats_t
Source§impl Default for zx_info_kmem_stats_t
 
impl Default for zx_info_kmem_stats_t
Source§fn default() -> zx_info_kmem_stats_t
 
fn default() -> zx_info_kmem_stats_t
Returns the “default value” for a type. Read more
Source§impl FromBytes for zx_info_kmem_stats_t
 
impl FromBytes for zx_info_kmem_stats_t
Source§impl FromZeros for zx_info_kmem_stats_t
 
impl FromZeros for zx_info_kmem_stats_t
Source§impl PartialEq for zx_info_kmem_stats_t
 
impl PartialEq for zx_info_kmem_stats_t
Source§impl TryFromBytes for zx_info_kmem_stats_twhere
    u64: TryFromBytes,
 
impl TryFromBytes for zx_info_kmem_stats_twhere
    u64: TryFromBytes,
Source§fn try_read_from_bytes(
    source: &[u8],
) -> Result<Self, ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
    Self: Sized,
 
fn try_read_from_bytes(
    source: &[u8],
) -> Result<Self, ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
    Self: Sized,
Source§fn try_read_from_prefix(
    source: &[u8],
) -> Result<(Self, &[u8]), ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
    Self: Sized,
 
fn try_read_from_prefix(
    source: &[u8],
) -> Result<(Self, &[u8]), ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
    Self: Sized,
Source§fn try_read_from_suffix(
    source: &[u8],
) -> Result<(&[u8], Self), ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
    Self: Sized,
 
fn try_read_from_suffix(
    source: &[u8],
) -> Result<(&[u8], Self), ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
    Self: Sized,
impl Copy for zx_info_kmem_stats_t
impl Eq for zx_info_kmem_stats_t
impl Immutable for zx_info_kmem_stats_t
impl StructuralPartialEq for zx_info_kmem_stats_t
Auto Trait Implementations§
impl Freeze for zx_info_kmem_stats_t
impl RefUnwindSafe for zx_info_kmem_stats_t
impl Send for zx_info_kmem_stats_t
impl Sync for zx_info_kmem_stats_t
impl Unpin for zx_info_kmem_stats_t
impl UnwindSafe for zx_info_kmem_stats_t
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