Struct mokapot::jvm::code::LocalVariableId   
source · pub struct LocalVariableId {
    pub effective_range: Range<ProgramCounter>,
    pub index: u16,
}Expand description
The identifier of a local variable.
Fields§
§effective_range: Range<ProgramCounter>The location where the variable is valid.
index: u16The index in the local variable.
Trait Implementations§
source§impl Clone for LocalVariableId
 
impl Clone for LocalVariableId
source§fn clone(&self) -> LocalVariableId
 
fn clone(&self) -> LocalVariableId
Returns a copy 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 moresource§impl Debug for LocalVariableId
 
impl Debug for LocalVariableId
source§impl Hash for LocalVariableId
 
impl Hash for LocalVariableId
source§impl PartialEq for LocalVariableId
 
impl PartialEq for LocalVariableId
source§fn eq(&self, other: &LocalVariableId) -> bool
 
fn eq(&self, other: &LocalVariableId) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl Eq for LocalVariableId
impl StructuralEq for LocalVariableId
impl StructuralPartialEq for LocalVariableId
Auto Trait Implementations§
impl RefUnwindSafe for LocalVariableId
impl Send for LocalVariableId
impl Sync for LocalVariableId
impl Unpin for LocalVariableId
impl UnwindSafe for LocalVariableId
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