pub struct DvmMethod { /* private fields */ }Expand description
Type alias for Shuriken’s hdvmmethod_t
Structure which keeps information from a method this can be accessed from the class data
Implementations§
Source§impl DvmMethod
impl DvmMethod
Sourcepub fn class_name(&self) -> &str
pub fn class_name(&self) -> &str
Return a reference to the class name
Sourcepub fn method_name(&self) -> &str
pub fn method_name(&self) -> &str
Return a reference to the method name
Sourcepub fn access_flags(&self) -> &[DvmAccessFlag]
pub fn access_flags(&self) -> &[DvmAccessFlag]
Return a reference to the method access flags
Sourcepub fn dalvik_name(&self) -> &str
pub fn dalvik_name(&self) -> &str
Return a reference to the dalvik name
Sourcepub fn demangled_name(&self) -> &str
pub fn demangled_name(&self) -> &str
Return a reference to the method demangled name
Trait Implementations§
impl StructuralPartialEq for DvmMethod
Auto Trait Implementations§
impl Freeze for DvmMethod
impl RefUnwindSafe for DvmMethod
impl Send for DvmMethod
impl Sync for DvmMethod
impl Unpin for DvmMethod
impl UnwindSafe for DvmMethod
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