pub enum StackMapFrameType {
AppendFrame(u8),
ChopFrame(u8),
FullFrame,
SameFrame(u8),
SameFrameExtended,
SameLocals1StackItemFrame(u8),
SameLocals1StackItemFrameExtended,
}
Variants§
AppendFrame(u8)
ChopFrame(u8)
FullFrame
SameFrame(u8)
SameFrameExtended
SameLocals1StackItemFrame(u8)
SameLocals1StackItemFrameExtended
Trait Implementations§
Source§impl Clone for StackMapFrameType
impl Clone for StackMapFrameType
Source§fn clone(&self) -> StackMapFrameType
fn clone(&self) -> StackMapFrameType
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 StackMapFrameType
impl RefUnwindSafe for StackMapFrameType
impl Send for StackMapFrameType
impl Sync for StackMapFrameType
impl Unpin for StackMapFrameType
impl UnwindSafe for StackMapFrameType
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