pub enum SubCommand {
Apc,
Badging,
Configurations,
Packagename,
Permissions,
Strings,
Styleparents,
Resources,
Xmlstrings,
Xmltree,
}
Variants§
Apc
Print the contents of the AAPT2 Container (APC) generated during compilation.
Badging
Print information extracted from the APKās manifest.
Configurations
Print every configuration used by a resource in the APK.
Packagename
Print the APKās package name.
Permissions
Print the permissions extracted from the APKās manifest.
Strings
Print the contents of the APKās resource table string pool.
Styleparents
Print the parents of styles used in the APK.
Resources
Print the contents of the APKās resource table.
Xmlstrings
Print strings from the APKās compiled xml.
Xmltree
Print a tree of the APKās compiled xml.
Trait Implementations§
Source§impl Default for SubCommand
impl Default for SubCommand
Auto Trait Implementations§
impl Freeze for SubCommand
impl RefUnwindSafe for SubCommand
impl Send for SubCommand
impl Sync for SubCommand
impl Unpin for SubCommand
impl UnwindSafe for SubCommand
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more