[][src]Enum pclass_parser::classfile::attributes::StackMapFrame

pub enum StackMapFrame {
    Same {
        tag: U1,
        offset_delta: U2,
    },
    SameLocals1StackItem {
        tag: U1,
        offset_delta: U2,
        stack: [VerificationTypeInfo; 1],
    },
    SameLocals1StackItemExtended {
        tag: U1,
        offset_delta: U2,
        stack: [VerificationTypeInfo; 1],
    },
    Chop {
        tag: U1,
        offset_delta: U2,
    },
    SameExtended {
        tag: U1,
        offset_delta: U2,
    },
    Append {
        tag: U1,
        offset_delta: U2,
        locals: Vec<VerificationTypeInfo>,
    },
    Full {
        tag: U1,
        offset_delta: U2,
        locals: Vec<VerificationTypeInfo>,
        stack: Vec<VerificationTypeInfo>,
    },
    Reserved(U1),
}

Variants

Same

Fields of Same

tag: U1offset_delta: U2
SameLocals1StackItem

Fields of SameLocals1StackItem

tag: U1offset_delta: U2stack: [VerificationTypeInfo; 1]
SameLocals1StackItemExtended

Fields of SameLocals1StackItemExtended

tag: U1offset_delta: U2stack: [VerificationTypeInfo; 1]
Chop

Fields of Chop

tag: U1offset_delta: U2
SameExtended

Fields of SameExtended

tag: U1offset_delta: U2
Append

Fields of Append

tag: U1offset_delta: U2locals: Vec<VerificationTypeInfo>
Full

Fields of Full

tag: U1offset_delta: U2locals: Vec<VerificationTypeInfo>stack: Vec<VerificationTypeInfo>
Reserved(U1)

Trait Implementations

impl Clone for StackMapFrame[src]

impl Debug for StackMapFrame[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.