[][src]Struct jvm_rs::jmm::jmmOptionalSupport

#[repr(C)]
#[repr(align(4))]pub struct jmmOptionalSupport {
    pub _bitfield_1: __BindgenBitfieldUnit<[u8; 4], u8>,
}

Fields

_bitfield_1: __BindgenBitfieldUnit<[u8; 4], u8>

Implementations

impl jmmOptionalSupport[src]

pub fn isLowMemoryDetectionSupported(&self) -> c_uint[src]

pub fn set_isLowMemoryDetectionSupported(&mut self, val: c_uint)[src]

pub fn isCompilationTimeMonitoringSupported(&self) -> c_uint[src]

pub fn set_isCompilationTimeMonitoringSupported(&mut self, val: c_uint)[src]

pub fn isThreadContentionMonitoringSupported(&self) -> c_uint[src]

pub fn set_isThreadContentionMonitoringSupported(&mut self, val: c_uint)[src]

pub fn isCurrentThreadCpuTimeSupported(&self) -> c_uint[src]

pub fn set_isCurrentThreadCpuTimeSupported(&mut self, val: c_uint)[src]

pub fn isOtherThreadCpuTimeSupported(&self) -> c_uint[src]

pub fn set_isOtherThreadCpuTimeSupported(&mut self, val: c_uint)[src]

pub fn isObjectMonitorUsageSupported(&self) -> c_uint[src]

pub fn set_isObjectMonitorUsageSupported(&mut self, val: c_uint)[src]

pub fn isSynchronizerUsageSupported(&self) -> c_uint[src]

pub fn set_isSynchronizerUsageSupported(&mut self, val: c_uint)[src]

pub fn isThreadAllocatedMemorySupported(&self) -> c_uint[src]

pub fn set_isThreadAllocatedMemorySupported(&mut self, val: c_uint)[src]

pub fn isRemoteDiagnosticCommandsSupported(&self) -> c_uint[src]

pub fn set_isRemoteDiagnosticCommandsSupported(&mut self, val: c_uint)[src]

pub fn new_bitfield_1(
    isLowMemoryDetectionSupported: c_uint,
    isCompilationTimeMonitoringSupported: c_uint,
    isThreadContentionMonitoringSupported: c_uint,
    isCurrentThreadCpuTimeSupported: c_uint,
    isOtherThreadCpuTimeSupported: c_uint,
    isObjectMonitorUsageSupported: c_uint,
    isSynchronizerUsageSupported: c_uint,
    isThreadAllocatedMemorySupported: c_uint,
    isRemoteDiagnosticCommandsSupported: c_uint
) -> __BindgenBitfieldUnit<[u8; 4], u8>
[src]

Trait Implementations

impl Clone for jmmOptionalSupport[src]

impl Copy for jmmOptionalSupport[src]

impl Debug for jmmOptionalSupport[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.