pub struct LocalVariable {
pub start_pc: u16,
pub length: u16,
pub name_index: u16,
pub descriptor_index: u16,
pub index: u16,
}Fields§
§start_pc: u16§length: u16§name_index: u16§descriptor_index: u16§index: u16Implementations§
Source§impl LocalVariable
impl LocalVariable
pub fn name<'attribute, 'constant_pool: 'attribute>( &'attribute self, constant_pool: &'constant_pool ConstantPool, ) -> Option<&'constant_pool Utf8>
pub fn descriptor<'attribute, 'constant_pool: 'attribute>( &'attribute self, constant_pool: &'constant_pool ConstantPool, ) -> Option<&'constant_pool Utf8>
Trait Implementations§
Source§impl Clone for LocalVariable
impl Clone for LocalVariable
Source§fn clone(&self) -> LocalVariable
fn clone(&self) -> LocalVariable
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 moreSource§impl Debug for LocalVariable
impl Debug for LocalVariable
Source§impl<'de> Deserialize<'de> for LocalVariable
impl<'de> Deserialize<'de> for LocalVariable
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for LocalVariable
impl PartialEq for LocalVariable
Source§impl Serialize for LocalVariable
impl Serialize for LocalVariable
impl Eq for LocalVariable
impl StructuralPartialEq for LocalVariable
Auto Trait Implementations§
impl Freeze for LocalVariable
impl RefUnwindSafe for LocalVariable
impl Send for LocalVariable
impl Sync for LocalVariable
impl Unpin for LocalVariable
impl UnwindSafe for LocalVariable
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