Enum rust_jni::JvmOption[][src]

pub enum JvmOption {
    Verbose(JvmVerboseOption),
    SystemProperty(StringString),
    CheckedJni,
    Unknown(String),
}

Options for starting a Java VM.

JNI documentation

Variants

Verbose option.

Passed to the JVM as -verbose:${verbose_option}.

System property option string. Must have a key and a value.

Is formatted as -D{key}=${value}.

Enable checking JNI calls.

Passed to the JVM as -check:jni.

Unknown option. Needed for forward compability and to set custom options. The string value is passed to the JVM without change.

Trait Implementations

impl Debug for JvmOption
[src]

Formats the value using the given formatter. Read more

impl Clone for JvmOption
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for JvmOption
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for JvmOption
[src]

Auto Trait Implementations

impl Send for JvmOption

impl Sync for JvmOption