#[repr(C)]pub struct jdwpTransportNativeInterface_ {
pub reserved1: *mut c_void,
pub GetCapabilities: Option<unsafe extern "C" fn(env: *mut jdwpTransportEnv, capabilities_ptr: *mut JDWPTransportCapabilities) -> jdwpTransportError>,
pub Attach: Option<unsafe extern "C" fn(env: *mut jdwpTransportEnv, address: *const c_char, attach_timeout: jlong, handshake_timeout: jlong) -> jdwpTransportError>,
pub StartListening: Option<unsafe extern "C" fn(env: *mut jdwpTransportEnv, address: *const c_char, actual_address: *mut *mut c_char) -> jdwpTransportError>,
pub StopListening: Option<unsafe extern "C" fn(env: *mut jdwpTransportEnv) -> jdwpTransportError>,
pub Accept: Option<unsafe extern "C" fn(env: *mut jdwpTransportEnv, accept_timeout: jlong, handshake_timeout: jlong) -> jdwpTransportError>,
pub IsOpen: Option<unsafe extern "C" fn(env: *mut jdwpTransportEnv) -> jboolean>,
pub Close: Option<unsafe extern "C" fn(env: *mut jdwpTransportEnv) -> jdwpTransportError>,
pub ReadPacket: Option<unsafe extern "C" fn(env: *mut jdwpTransportEnv, pkt: *mut jdwpPacket) -> jdwpTransportError>,
pub WritePacket: Option<unsafe extern "C" fn(env: *mut jdwpTransportEnv, pkt: *const jdwpPacket) -> jdwpTransportError>,
pub GetLastError: Option<unsafe extern "C" fn(env: *mut jdwpTransportEnv, error: *mut *mut c_char) -> jdwpTransportError>,
pub SetTransportConfiguration: Option<unsafe extern "C" fn(env: *mut jdwpTransportEnv, config: *mut jdwpTransportConfiguration) -> jdwpTransportError>,
}
Fields§
§reserved1: *mut c_void
§GetCapabilities: Option<unsafe extern "C" fn(env: *mut jdwpTransportEnv, capabilities_ptr: *mut JDWPTransportCapabilities) -> jdwpTransportError>
§Attach: Option<unsafe extern "C" fn(env: *mut jdwpTransportEnv, address: *const c_char, attach_timeout: jlong, handshake_timeout: jlong) -> jdwpTransportError>
§StartListening: Option<unsafe extern "C" fn(env: *mut jdwpTransportEnv, address: *const c_char, actual_address: *mut *mut c_char) -> jdwpTransportError>
§StopListening: Option<unsafe extern "C" fn(env: *mut jdwpTransportEnv) -> jdwpTransportError>
§Accept: Option<unsafe extern "C" fn(env: *mut jdwpTransportEnv, accept_timeout: jlong, handshake_timeout: jlong) -> jdwpTransportError>
§IsOpen: Option<unsafe extern "C" fn(env: *mut jdwpTransportEnv) -> jboolean>
§Close: Option<unsafe extern "C" fn(env: *mut jdwpTransportEnv) -> jdwpTransportError>
§ReadPacket: Option<unsafe extern "C" fn(env: *mut jdwpTransportEnv, pkt: *mut jdwpPacket) -> jdwpTransportError>
§WritePacket: Option<unsafe extern "C" fn(env: *mut jdwpTransportEnv, pkt: *const jdwpPacket) -> jdwpTransportError>
§GetLastError: Option<unsafe extern "C" fn(env: *mut jdwpTransportEnv, error: *mut *mut c_char) -> jdwpTransportError>
§SetTransportConfiguration: Option<unsafe extern "C" fn(env: *mut jdwpTransportEnv, config: *mut jdwpTransportConfiguration) -> jdwpTransportError>
Trait Implementations§
Source§impl Clone for jdwpTransportNativeInterface_
impl Clone for jdwpTransportNativeInterface_
Source§fn clone(&self) -> jdwpTransportNativeInterface_
fn clone(&self) -> jdwpTransportNativeInterface_
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 moreimpl Copy for jdwpTransportNativeInterface_
Auto Trait Implementations§
impl Freeze for jdwpTransportNativeInterface_
impl RefUnwindSafe for jdwpTransportNativeInterface_
impl !Send for jdwpTransportNativeInterface_
impl !Sync for jdwpTransportNativeInterface_
impl Unpin for jdwpTransportNativeInterface_
impl UnwindSafe for jdwpTransportNativeInterface_
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