Enum classreader::StackMapFrame [] [src]

pub enum StackMapFrame {
    SameFrame,
    SameLocals1StackItemFrame(VerificationType),
    SameLocals1StackItemFrameExtended {
        offset_delta: u16,
        stack: VerificationType,
    },
    ChopFrame {
        offset_delta: u16,
    },
    SameFrameExtended {
        offset_delta: u16,
    },
    AppendFrame {
        offset_delta: u16,
        locals: Vec<VerificationType>,
    },
    FullFrame {
        offset_delta: u16,
        locals: Vec<VerificationType>,
        stack: Vec<VerificationType>,
    },
}

Variants

Fields of SameLocals1StackItemFrameExtended

Fields of ChopFrame

Fields of SameFrameExtended

Fields of AppendFrame

Fields of FullFrame

Trait Implementations

impl Debug for StackMapFrame
[src]

Formats the value using the given formatter.