pub struct EncodedMethod {
pub proto: String,
pub access_flags: Vec<AccessFlag>,
pub code_item: Option<CodeItem>,
}Expand description
Representation of an encoded method
Fields§
§proto: String§access_flags: Vec<AccessFlag>§code_item: Option<CodeItem>Implementations§
Source§impl EncodedMethod
impl EncodedMethod
Sourcepub fn get_method_name(&self) -> &str
pub fn get_method_name(&self) -> &str
Get the name of a method
Sourcepub fn get_access_flags(&self) -> String
pub fn get_access_flags(&self) -> String
Get the access flags of a method
Trait Implementations§
Auto Trait Implementations§
impl Freeze for EncodedMethod
impl RefUnwindSafe for EncodedMethod
impl Send for EncodedMethod
impl Sync for EncodedMethod
impl Unpin for EncodedMethod
impl UnwindSafe for EncodedMethod
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