pub struct MethodNode {
pub access_flags: u16,
pub name_index: u16,
pub descriptor_index: u16,
pub name: String,
pub descriptor: String,
pub code: Option<CodeAttribute>,
pub attributes: Vec<AttributeInfo>,
}Fields§
§access_flags: u16§name_index: u16§descriptor_index: u16§name: String§descriptor: String§code: Option<CodeAttribute>§attributes: Vec<AttributeInfo>Trait Implementations§
Source§impl Clone for MethodNode
impl Clone for MethodNode
Source§fn clone(&self) -> MethodNode
fn clone(&self) -> MethodNode
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for MethodNode
impl RefUnwindSafe for MethodNode
impl Send for MethodNode
impl Sync for MethodNode
impl Unpin for MethodNode
impl UnsafeUnpin for MethodNode
impl UnwindSafe for MethodNode
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