pub struct LocalVariablesAttribute {
pub variables: Vec<LocalVariable>,
}Expand description
An ordered local-variable table payload.
Fields§
§variables: Vec<LocalVariable>Ranges in encoded order.
Implementations§
Source§impl LocalVariablesAttribute
impl LocalVariablesAttribute
Sourcepub fn decode(reader: &mut ByteReader<'_>) -> Result<Self, AttributeError>
pub fn decode(reader: &mut ByteReader<'_>) -> Result<Self, AttributeError>
Decode ranges without resolving names or checking code offsets.
Trait Implementations§
Source§impl Clone for LocalVariablesAttribute
impl Clone for LocalVariablesAttribute
Source§fn clone(&self) -> LocalVariablesAttribute
fn clone(&self) -> LocalVariablesAttribute
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 moreSource§impl Debug for LocalVariablesAttribute
impl Debug for LocalVariablesAttribute
impl Eq for LocalVariablesAttribute
Source§impl PartialEq for LocalVariablesAttribute
impl PartialEq for LocalVariablesAttribute
impl StructuralPartialEq for LocalVariablesAttribute
Auto Trait Implementations§
impl Freeze for LocalVariablesAttribute
impl RefUnwindSafe for LocalVariablesAttribute
impl Send for LocalVariablesAttribute
impl Sync for LocalVariablesAttribute
impl Unpin for LocalVariablesAttribute
impl UnsafeUnpin for LocalVariablesAttribute
impl UnwindSafe for LocalVariablesAttribute
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