pub struct EncodedMethod {
pub proto: String,
pub access_flags: Vec<AccessFlag>,
pub code_item: Option<CodeItem>,
}Fields§
§proto: String§access_flags: Vec<AccessFlag>§code_item: Option<CodeItem>Implementations§
Source§impl EncodedMethod
impl EncodedMethod
pub fn get_proto(&self) -> &str
pub fn get_method_name(&self) -> &str
pub fn get_access_flags(&self) -> String
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