pub struct DexFileData {
pub string_data: Vec<Rc<String>>,
pub type_identifiers: Vec<Rc<String>>,
pub prototypes: Vec<Rc<Prototype>>,
pub fields: Vec<Rc<Field>>,
pub methods: Vec<Rc<Method>>,
}
Fields§
§string_data: Vec<Rc<String>>
§type_identifiers: Vec<Rc<String>>
§prototypes: Vec<Rc<Prototype>>
§fields: Vec<Rc<Field>>
§methods: Vec<Rc<Method>>
Trait Implementations§
Source§impl Debug for DexFileData
impl Debug for DexFileData
Source§impl PartialEq for DexFileData
impl PartialEq for DexFileData
impl StructuralPartialEq for DexFileData
Auto Trait Implementations§
impl Freeze for DexFileData
impl RefUnwindSafe for DexFileData
impl !Send for DexFileData
impl !Sync for DexFileData
impl Unpin for DexFileData
impl UnwindSafe for DexFileData
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