Enum jni::JNIVersion [] [src]

pub enum JNIVersion {
    V1,
    V2,
    V4,
    V6,
    V8,
    Invalid(i32),
}

JNI Version

This maps to the jni_sys::JNI_VERSION_1_* constants.

Variants

Trait Implementations

impl Debug for JNIVersion
[src]

[src]

Formats the value using the given formatter. Read more

impl Copy for JNIVersion
[src]

impl Clone for JNIVersion
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl From<i32> for JNIVersion
[src]

[src]

Performs the conversion.

impl From<JNIVersion> for i32
[src]

[src]

Performs the conversion.

Auto Trait Implementations

impl Send for JNIVersion

impl Sync for JNIVersion