DvmMethod

Struct DvmMethod 

Source
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

Source

pub fn from_ptr(method: hdvmmethod_t_) -> Self

Convert an hdvmmethod_t into a DvmMethod

Source

pub fn class_name(&self) -> &str

Return a reference to the class name

Source

pub fn method_name(&self) -> &str

Return a reference to the method name

Source

pub fn prototype(&self) -> &str

Return a reference to the method prototype

Source

pub fn access_flags(&self) -> &[DvmAccessFlag]

Return a reference to the method access flags

Source

pub fn code_size(&self) -> usize

Return the method’s code size

Source

pub fn code(&self) -> &[u8]

Return the method’s code

Source

pub fn dalvik_name(&self) -> &str

Return a reference to the dalvik name

Source

pub fn demangled_name(&self) -> &str

Return a reference to the method demangled name

Trait Implementations§

Source§

impl Debug for DvmMethod

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl PartialEq for DvmMethod

Source§

fn eq(&self, other: &DvmMethod) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl StructuralPartialEq for DvmMethod

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.