pub struct DexFile {
pub header: Header,
pub string_ids: Vec<StringId>,
pub type_ids: Vec<TypeId>,
pub proto_ids: Vec<ProtoId>,
pub field_ids: Vec<FieldId>,
pub method_ids: Vec<MethodId>,
pub class_defs: Vec<ClassDef>,
}Fields§
§header: Header§string_ids: Vec<StringId>§type_ids: Vec<TypeId>§proto_ids: Vec<ProtoId>§field_ids: Vec<FieldId>§method_ids: Vec<MethodId>§class_defs: Vec<ClassDef>Implementations§
Trait Implementations§
impl Eq for DexFile
impl StructuralPartialEq for DexFile
Auto Trait Implementations§
impl Freeze for DexFile
impl RefUnwindSafe for DexFile
impl Send for DexFile
impl Sync for DexFile
impl Unpin for DexFile
impl UnwindSafe for DexFile
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