pub struct Malloc {
pub version: String,
pub heaps: Vec<Heap>,
pub total: Vec<Total>,
pub system: Vec<System>,
pub aspace: Vec<Aspace>,
}Expand description
Top-level type for all stats returned from malloc_info
Fields§
§version: String§heaps: Vec<Heap>§total: Vec<Total>§system: Vec<System>§aspace: Vec<Aspace>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Malloc
impl<'de> Deserialize<'de> for Malloc
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
impl Eq for Malloc
impl StructuralPartialEq for Malloc
Auto Trait Implementations§
impl Freeze for Malloc
impl RefUnwindSafe for Malloc
impl Send for Malloc
impl Sync for Malloc
impl Unpin for Malloc
impl UnwindSafe for Malloc
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