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(vm: *mut JavaVM) -> jint>,
pub AttachCurrentThread: Option<unsafe extern "system" fn(vm: *mut JavaVM, penv: *mut *mut c_void, args: *mut c_void) -> jint>,
pub DetachCurrentThread: Option<unsafe extern "system" fn(vm: *mut JavaVM) -> jint>,
pub GetEnv: Option<unsafe extern "system" fn(vm: *mut JavaVM, penv: *mut *mut c_void, version: jint) -> jint>,
pub AttachCurrentThreadAsDaemon: Option<unsafe extern "system" fn(vm: *mut JavaVM, penv: *mut *mut c_void, args: *mut c_void) -> jint>,
}
Fields
reserved0: *mut c_void
reserved1: *mut c_void
reserved2: *mut c_void
DestroyJavaVM: Option<unsafe extern "system" fn(vm: *mut JavaVM) -> jint>
AttachCurrentThread: Option<unsafe extern "system" fn(vm: *mut JavaVM, penv: *mut *mut c_void, args: *mut c_void) -> jint>
DetachCurrentThread: Option<unsafe extern "system" fn(vm: *mut JavaVM) -> jint>
GetEnv: Option<unsafe extern "system" fn(vm: *mut JavaVM, penv: *mut *mut c_void, version: jint) -> jint>
AttachCurrentThreadAsDaemon: Option<unsafe extern "system" fn(vm: *mut JavaVM, penv: *mut *mut c_void, args: *mut c_void) -> jint>
Trait Implementations
sourceimpl Clone for JNIInvokeInterface_
impl Clone for JNIInvokeInterface_
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