#[repr(C)]pub struct jvmtiLocalVariableEntry {
pub start_location: jlocation,
pub length: jint,
pub name: *mut c_char,
pub signature: *mut c_char,
pub generic_signature: *mut c_char,
pub slot: jint,
}Fields§
§start_location: jlocation§length: jint§name: *mut c_char§signature: *mut c_char§generic_signature: *mut c_char§slot: jintTrait Implementations§
Source§impl Clone for jvmtiLocalVariableEntry
impl Clone for jvmtiLocalVariableEntry
Source§fn clone(&self) -> jvmtiLocalVariableEntry
fn clone(&self) -> jvmtiLocalVariableEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for jvmtiLocalVariableEntry
Auto Trait Implementations§
impl !Send for jvmtiLocalVariableEntry
impl !Sync for jvmtiLocalVariableEntry
impl Freeze for jvmtiLocalVariableEntry
impl RefUnwindSafe for jvmtiLocalVariableEntry
impl Unpin for jvmtiLocalVariableEntry
impl UnsafeUnpin for jvmtiLocalVariableEntry
impl UnwindSafe for jvmtiLocalVariableEntry
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