Enum classreader::TargetInfo [] [src]

pub enum TargetInfo {
    TypeParameter {
        index: u8,
    },
    Supertype {
        index: u16,
    },
    TypeParameterBound {
        index: u8,
        bound_index: u8,
    },
    Empty,
    MethodFormalParameter {
        index: u8,
    },
    Throws {
        type_index: u16,
    },
    Localvar(Vec<LocalVariableTarget>),
    Catch {
        exception_table_index: u16,
    },
    Offset(u16),
    TypeArgument {
        offset: u16,
        index: u8,
    },
}

Variants

Fields of TypeParameter

Fields of Supertype

Fields of TypeParameterBound

Fields of MethodFormalParameter

Fields of Throws

Fields of Catch

Fields of TypeArgument

Trait Implementations

impl Debug for TargetInfo
[src]

Formats the value using the given formatter.