Type Alias jvmtiArrayPrimitiveValueCallback

Source
pub type jvmtiArrayPrimitiveValueCallback = Option<unsafe extern "C" fn(class_tag: jlong, size: jlong, tag_ptr: *mut jlong, element_count: jint, element_type: jvmtiPrimitiveType, elements: *const c_void, user_data: *mut c_void) -> jint>;

Aliased Type§

pub enum jvmtiArrayPrimitiveValueCallback {
    None,
    Some(unsafe extern "C" fn(i64, i64, *mut i64, i32, u32, *const c_void, *mut c_void) -> i32),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(i64, i64, *mut i64, i32, u32, *const c_void, *mut c_void) -> i32)

Some value of type T.