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
TypeParameterFields
SupertypeFields
TypeParameterBoundFields
EmptyMethodFormalParameterFields
ThrowsFields
Localvar(Vec<LocalVariableTarget>)CatchFields
exception_table_index: u16 | |
Offset(u16)TypeArgumentFields
Trait Implementations
Formats the value using the given formatter.