Struct mozjs::jsapi::JS::ZoneStats

source ·
#[repr(C)]
pub struct ZoneStats {
Show 33 fields pub symbolsGCHeap: usize, pub bigIntsGCHeap: usize, pub bigIntsMallocHeap: usize, pub gcHeapArenaAdmin: usize, pub jitCodesGCHeap: usize, pub getterSettersGCHeap: usize, pub compactPropMapsGCHeap: usize, pub normalPropMapsGCHeap: usize, pub dictPropMapsGCHeap: usize, pub propMapChildren: usize, pub propMapTables: usize, pub scopesGCHeap: usize, pub scopesMallocHeap: usize, pub regExpSharedsGCHeap: usize, pub regExpSharedsMallocHeap: usize, pub regexpZone: usize, pub jitZone: usize, pub baselineStubsOptimized: usize, pub uniqueIdMap: usize, pub initialPropMapTable: usize, pub shapeTables: usize, pub compartmentObjects: usize, pub crossCompartmentWrappersTables: usize, pub compartmentsPrivateData: usize, pub scriptCountsMap: usize, pub unusedGCThings: UnusedGCThingSizes, pub stringInfo: StringInfo, pub shapeInfo: ShapeInfo, pub code: CodeSizes, pub extra: *mut c_void, pub allStrings: [u64; 4], pub notableStrings: [u64; 3], pub isTotals: bool,
}

Fields§

§symbolsGCHeap: usize§bigIntsGCHeap: usize§bigIntsMallocHeap: usize§gcHeapArenaAdmin: usize§jitCodesGCHeap: usize§getterSettersGCHeap: usize§compactPropMapsGCHeap: usize§normalPropMapsGCHeap: usize§dictPropMapsGCHeap: usize§propMapChildren: usize§propMapTables: usize§scopesGCHeap: usize§scopesMallocHeap: usize§regExpSharedsGCHeap: usize§regExpSharedsMallocHeap: usize§regexpZone: usize§jitZone: usize§baselineStubsOptimized: usize§uniqueIdMap: usize§initialPropMapTable: usize§shapeTables: usize§compartmentObjects: usize§crossCompartmentWrappersTables: usize§compartmentsPrivateData: usize§scriptCountsMap: usize§unusedGCThings: UnusedGCThingSizes§stringInfo: StringInfo§shapeInfo: ShapeInfo§code: CodeSizes§extra: *mut c_void§allStrings: [u64; 4]§notableStrings: [u64; 3]§isTotals: bool

Trait Implementations§

source§

impl Debug for ZoneStats

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl PartialEq<ZoneStats> for ZoneStats

source§

fn eq(&self, other: &ZoneStats) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl StructuralPartialEq for ZoneStats

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.