Enum jbcrs_basic::StackMapFrame [] [src]

pub enum StackMapFrame {
    Same {
        offset_delta: u16,
    },
    Same1 {
        offset_delta: u16,
        stack: VerificationType,
    },
    Chop {
        offset_delta: u16,
        count: u8,
    },
    Append {
        offset_delta: u16,
        locals: Vec<VerificationType>,
    },
    Full {
        offset_delta: u16,
        locals: Vec<VerificationType>,
        stack: Vec<VerificationType>,
    },
}

Variants

Fields of Same

Fields of Same1

Fields of Chop

Fields of Append

Fields of Full

Trait Implementations

impl Debug for StackMapFrame
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for StackMapFrame

impl Sync for StackMapFrame