pub struct JvmLineNumberEntry {
pub start_pc: u16,
pub line_number: u16,
}Expand description
JVM line number table entry
Fields§
§start_pc: u16Starting PC
line_number: u16Line number
Trait Implementations§
Source§impl Clone for JvmLineNumberEntry
impl Clone for JvmLineNumberEntry
Source§fn clone(&self) -> JvmLineNumberEntry
fn clone(&self) -> JvmLineNumberEntry
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 moreAuto Trait Implementations§
impl Freeze for JvmLineNumberEntry
impl RefUnwindSafe for JvmLineNumberEntry
impl Send for JvmLineNumberEntry
impl Sync for JvmLineNumberEntry
impl Unpin for JvmLineNumberEntry
impl UnsafeUnpin for JvmLineNumberEntry
impl UnwindSafe for JvmLineNumberEntry
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