[][src]Struct jvm_class_file_parser::Method

pub struct Method {
    pub access_flags: u16,
    pub name_index: u16,
    pub descriptor_index: u16,
    pub attributes: Vec<Attribute>,
}

Fields

access_flags: u16name_index: u16descriptor_index: u16attributes: Vec<Attribute>

Methods

impl Method[src]

pub fn get_code(&self, class_file: &ClassFile) -> Result<Option<Code>>[src]

Trait Implementations

impl Eq for Method[src]

impl PartialEq<Method> for Method[src]

impl Debug for Method[src]

Auto Trait Implementations

impl Send for Method

impl Sync for Method

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.