[][src]Struct jvm_rs::jmm::jmmGCStat

#[repr(C)]pub struct jmmGCStat {
    pub gc_index: jlong,
    pub start_time: jlong,
    pub end_time: jlong,
    pub usage_before_gc: jobjectArray,
    pub usage_after_gc: jobjectArray,
    pub gc_ext_attribute_values_size: jint,
    pub gc_ext_attribute_values: *mut jvalue,
    pub num_gc_ext_attributes: jint,
}

Fields

gc_index: jlongstart_time: jlongend_time: jlongusage_before_gc: jobjectArrayusage_after_gc: jobjectArraygc_ext_attribute_values_size: jintgc_ext_attribute_values: *mut jvaluenum_gc_ext_attributes: jint

Trait Implementations

impl Clone for jmmGCStat[src]

impl Copy for jmmGCStat[src]

impl Debug for jmmGCStat[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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.