pub enum FrameAttributeValue {
SameFrame {
offset_delta: u8,
},
SameFrameExtended {
offset_delta: u16,
},
SameLocals1StackItemFrame {
offset_delta: u8,
stack: FrameValue,
},
SameLocals1StackItemFrameExtended {
offset_delta: u16,
stack: FrameValue,
},
ChopFrame {
chop_count: u8,
offset_delta: u16,
},
AppendFrame {
offset_delta: u16,
append_locals: Vec<FrameValue>,
},
FullFrame {
offset_delta: u16,
locals: Vec<FrameValue>,
stack: Vec<FrameValue>,
},
}Variants§
SameFrame
SameFrameExtended
SameLocals1StackItemFrame
SameLocals1StackItemFrameExtended
ChopFrame
AppendFrame
FullFrame
Trait Implementations§
Source§impl Clone for FrameAttributeValue
impl Clone for FrameAttributeValue
Source§fn clone(&self) -> FrameAttributeValue
fn clone(&self) -> FrameAttributeValue
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 moreAuto Trait Implementations§
impl Freeze for FrameAttributeValue
impl RefUnwindSafe for FrameAttributeValue
impl Send for FrameAttributeValue
impl Sync for FrameAttributeValue
impl Unpin for FrameAttributeValue
impl UnwindSafe for FrameAttributeValue
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