pub enum JvmStackMapFrame {
Same {
offset_delta: u16,
},
SameLocals1StackItem {
offset_delta: u16,
stack: JvmVerificationType,
},
SameLocals1StackItemExtended {
offset_delta: u16,
stack: JvmVerificationType,
},
Chop {
offset_delta: u16,
k: u8,
},
SameExtended {
offset_delta: u16,
},
Append {
offset_delta: u16,
locals: Vec<JvmVerificationType>,
},
Full {
offset_delta: u16,
locals: Vec<JvmVerificationType>,
stack: Vec<JvmVerificationType>,
},
}Expand description
JVM StackMapTable 帧
Variants§
Trait Implementations§
Source§impl Clone for JvmStackMapFrame
impl Clone for JvmStackMapFrame
Source§fn clone(&self) -> JvmStackMapFrame
fn clone(&self) -> JvmStackMapFrame
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 JvmStackMapFrame
impl RefUnwindSafe for JvmStackMapFrame
impl Send for JvmStackMapFrame
impl Sync for JvmStackMapFrame
impl Unpin for JvmStackMapFrame
impl UnsafeUnpin for JvmStackMapFrame
impl UnwindSafe for JvmStackMapFrame
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