pub enum TargetInfo {
TypeParameter {
target_type: u8,
type_parameter_index: u8,
},
Supertype {
supertype_index: u16,
},
TypeParameterBound {
target_type: u8,
type_parameter_index: u8,
bound_index: u8,
},
Empty(u8),
FormalParameter {
formal_parameter_index: u8,
},
Throws {
throws_type_index: u16,
},
Localvar {
target_type: u8,
table: Vec<LocalVar>,
},
Catch {
exception_table_index: u16,
},
Offset {
target_type: u8,
offset: u16,
},
TypeArgument {
target_type: u8,
offset: u16,
type_argument_index: u8,
},
}
Variants§
TypeParameter
Supertype
TypeParameterBound
Empty(u8)
FormalParameter
Throws
Localvar
Catch
Offset
TypeArgument
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TargetInfo
impl RefUnwindSafe for TargetInfo
impl Send for TargetInfo
impl Sync for TargetInfo
impl Unpin for TargetInfo
impl UnwindSafe for TargetInfo
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more