[][src]Struct dexparser::ClassDefinition

pub struct ClassDefinition {
    pub class_type: Rc<String>,
    pub access_flags: Vec<AccessFlag>,
    pub superclass: Option<Rc<String>>,
    pub interfaces: Vec<Rc<String>>,
    pub source_file_name: Option<Rc<String>>,
    pub annotations: Option<Annotations>,
    pub class_data: Option<ClassData>,
    pub static_values: Vec<EncodedValue>,
}

Fields

class_type: Rc<String>access_flags: Vec<AccessFlag>superclass: Option<Rc<String>>interfaces: Vec<Rc<String>>source_file_name: Option<Rc<String>>annotations: Option<Annotations>class_data: Option<ClassData>static_values: Vec<EncodedValue>

Trait Implementations

impl PartialEq<ClassDefinition> for ClassDefinition[src]

impl Debug for ClassDefinition[src]

impl StructuralPartialEq for ClassDefinition[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

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

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

type Error = !

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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