[][src]Struct libpulse_sys::context::introspect::pa_stat_info

#[repr(C)]pub struct pa_stat_info {
    pub memblock_total: u32,
    pub memblock_total_size: u32,
    pub memblock_allocated: u32,
    pub memblock_allocated_size: u32,
    pub scache_size: u32,
}

Memory block statistics.

Please note that this structure can be extended as part of evolutionary API updates at any time in any new release.

Fields

memblock_total: u32

Currently allocated memory blocks.

memblock_total_size: u32

Current total size of allocated memory blocks.

memblock_allocated: u32

Allocated memory blocks during the whole lifetime of the daemon.

memblock_allocated_size: u32

Total size of all memory blocks allocated during the whole lifetime of the daemon.

scache_size: u32

Total size of all sample cache entries.

Trait Implementations

impl Debug for pa_stat_info[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.