[][src]Struct jvm_rs::jvm::JDK1_1InitArgs

#[repr(C)]pub struct JDK1_1InitArgs {
    pub version: jint,
    pub properties: *mut *mut c_char,
    pub checkSource: jint,
    pub nativeStackSize: jint,
    pub javaStackSize: jint,
    pub minHeapSize: jint,
    pub maxHeapSize: jint,
    pub verifyMode: jint,
    pub classpath: *mut c_char,
    pub vfprintf: Option<unsafe extern "C" fn(fp: *mut FILE, format: *const c_char, args: *mut __va_list_tag) -> jint>,
    pub exit: Option<unsafe extern "C" fn(code: jint)>,
    pub abort: Option<unsafe extern "C" fn()>,
    pub enableClassGC: jint,
    pub enableVerboseGC: jint,
    pub disableAsyncGC: jint,
    pub verbose: jint,
    pub debugging: jboolean,
    pub debugPort: jint,
}

Fields

version: jintproperties: *mut *mut c_charcheckSource: jintnativeStackSize: jintjavaStackSize: jintminHeapSize: jintmaxHeapSize: jintverifyMode: jintclasspath: *mut c_charvfprintf: Option<unsafe extern "C" fn(fp: *mut FILE, format: *const c_char, args: *mut __va_list_tag) -> jint>exit: Option<unsafe extern "C" fn(code: jint)>abort: Option<unsafe extern "C" fn()>enableClassGC: jintenableVerboseGC: jintdisableAsyncGC: jintverbose: jintdebugging: jbooleandebugPort: jint

Trait Implementations

impl Clone for JDK1_1InitArgs[src]

impl Copy for JDK1_1InitArgs[src]

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