Enum rust_jni::JvmVerboseOption[][src]

pub enum JvmVerboseOption {
    Class,
    Gc,
    Jni,
}

Verbose options for starting a Java VM.

JNI documentation

Variants

Verbose class option.

Passed to the JVM as -verbose:class.

Verbose GC option.

Passed to the JVM as -verbose:gc.

Verbose JNI option.

Passed to the JVM as -verbose:jni.

Trait Implementations

impl Debug for JvmVerboseOption
[src]

Formats the value using the given formatter. Read more

impl Clone for JvmVerboseOption
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for JvmVerboseOption
[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 JvmVerboseOption
[src]

Auto Trait Implementations