pub enum JvmVerificationType {
Top,
Integer,
Float,
Double,
Long,
Null,
UninitializedThis,
Object {
class_name: String,
},
Uninitialized {
offset: u16,
},
}Expand description
JVM verification type (used in StackMapTable)
Variants§
Top
Top type
Integer
Integer type
Float
Float type
Double
Double type
Long
Long type
Null
Null type
UninitializedThis
Uninitialized this
Object
Object type with class name
Uninitialized
Uninitialized object at given offset
Trait Implementations§
Source§impl Clone for JvmVerificationType
impl Clone for JvmVerificationType
Source§fn clone(&self) -> JvmVerificationType
fn clone(&self) -> JvmVerificationType
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 JvmVerificationType
impl Debug for JvmVerificationType
Source§impl Hash for JvmVerificationType
impl Hash for JvmVerificationType
Source§impl PartialEq for JvmVerificationType
impl PartialEq for JvmVerificationType
impl Eq for JvmVerificationType
impl StructuralPartialEq for JvmVerificationType
Auto Trait Implementations§
impl Freeze for JvmVerificationType
impl RefUnwindSafe for JvmVerificationType
impl Send for JvmVerificationType
impl Sync for JvmVerificationType
impl Unpin for JvmVerificationType
impl UnsafeUnpin for JvmVerificationType
impl UnwindSafe for JvmVerificationType
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