pub enum JniVersion {
V1,
V2,
V4,
V6,
V8,
Unknown(i32),
}Expand description
Variants§
V1
JNI 1.1.
V2
JNI 1.2.
V4
JNI 1.4.
V6
JNI 1.6.
V8
JNI 1.8.
Unknown(i32)
Unknown version. Needed for forward compability and to request a version that has not been added yet.
Trait Implementations§
Source§impl Clone for JniVersion
impl Clone for JniVersion
Source§fn clone(&self) -> JniVersion
fn clone(&self) -> JniVersion
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for JniVersion
impl Debug for JniVersion
Source§impl PartialEq for JniVersion
impl PartialEq for JniVersion
impl Copy for JniVersion
impl Eq for JniVersion
impl StructuralPartialEq for JniVersion
Auto Trait Implementations§
impl Freeze for JniVersion
impl RefUnwindSafe for JniVersion
impl Send for JniVersion
impl Sync for JniVersion
impl Unpin for JniVersion
impl UnwindSafe for JniVersion
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more