Struct jni::sys::JNIInvokeInterface_
source · [−]#[repr(C)]pub struct JNIInvokeInterface_ {
pub reserved0: *mut c_void,
pub reserved1: *mut c_void,
pub reserved2: *mut c_void,
pub DestroyJavaVM: Option<unsafe extern "system" fn(*mut *const JNIInvokeInterface_) -> i32>,
pub AttachCurrentThread: Option<unsafe extern "system" fn(*mut *const JNIInvokeInterface_, *mut *mut c_void, *mut c_void) -> i32>,
pub DetachCurrentThread: Option<unsafe extern "system" fn(*mut *const JNIInvokeInterface_) -> i32>,
pub GetEnv: Option<unsafe extern "system" fn(*mut *const JNIInvokeInterface_, *mut *mut c_void, i32) -> i32>,
pub AttachCurrentThreadAsDaemon: Option<unsafe extern "system" fn(*mut *const JNIInvokeInterface_, *mut *mut c_void, *mut c_void) -> i32>,
}
Fields
reserved0: *mut c_void
reserved1: *mut c_void
reserved2: *mut c_void
DestroyJavaVM: Option<unsafe extern "system" fn(*mut *const JNIInvokeInterface_) -> i32>
AttachCurrentThread: Option<unsafe extern "system" fn(*mut *const JNIInvokeInterface_, *mut *mut c_void, *mut c_void) -> i32>
DetachCurrentThread: Option<unsafe extern "system" fn(*mut *const JNIInvokeInterface_) -> i32>
GetEnv: Option<unsafe extern "system" fn(*mut *const JNIInvokeInterface_, *mut *mut c_void, i32) -> i32>
AttachCurrentThreadAsDaemon: Option<unsafe extern "system" fn(*mut *const JNIInvokeInterface_, *mut *mut c_void, *mut c_void) -> i32>
Trait Implementations
sourceimpl Clone for JNIInvokeInterface_
impl Clone for JNIInvokeInterface_
sourcefn clone(&self) -> JNIInvokeInterface_
fn clone(&self) -> JNIInvokeInterface_
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Copy for JNIInvokeInterface_
Auto Trait Implementations
impl RefUnwindSafe for JNIInvokeInterface_
impl !Send for JNIInvokeInterface_
impl !Sync for JNIInvokeInterface_
impl Unpin for JNIInvokeInterface_
impl UnwindSafe for JNIInvokeInterface_
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more