pub struct FieldNode {
pub access_flags: u16,
pub name_index: u16,
pub descriptor_index: u16,
pub name: String,
pub descriptor: String,
pub attributes: Vec<AttributeInfo>,
}Fields§
§access_flags: u16§name_index: u16§descriptor_index: u16§name: String§descriptor: String§attributes: Vec<AttributeInfo>Trait Implementations§
Auto Trait Implementations§
impl Freeze for FieldNode
impl RefUnwindSafe for FieldNode
impl Send for FieldNode
impl Sync for FieldNode
impl Unpin for FieldNode
impl UnsafeUnpin for FieldNode
impl UnwindSafe for FieldNode
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