pub struct AndroidConfig {
pub package_name: String,
pub version_code: u32,
pub version_name: String,
pub nnapi_config: NNAPIConfig,
pub gpu_config: AndroidGPUConfig,
pub obfuscation: ObfuscationConfig,
pub permissions: AndroidPermissionsConfig,
}
Expand description
Android-specific configuration
Fields§
§package_name: String
Package name
version_code: u32
Version code
version_name: String
Version name
nnapi_config: NNAPIConfig
NNAPI configuration
gpu_config: AndroidGPUConfig
GPU delegate configuration
obfuscation: ObfuscationConfig
ProGuard/R8 configuration
permissions: AndroidPermissionsConfig
Permissions configuration
Trait Implementations§
Source§impl Clone for AndroidConfig
impl Clone for AndroidConfig
Source§fn clone(&self) -> AndroidConfig
fn clone(&self) -> AndroidConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AndroidConfig
impl Debug for AndroidConfig
Source§impl Hash for AndroidConfig
impl Hash for AndroidConfig
Source§impl PartialEq for AndroidConfig
impl PartialEq for AndroidConfig
impl Eq for AndroidConfig
impl StructuralPartialEq for AndroidConfig
Auto Trait Implementations§
impl Freeze for AndroidConfig
impl RefUnwindSafe for AndroidConfig
impl Send for AndroidConfig
impl Sync for AndroidConfig
impl Unpin for AndroidConfig
impl UnwindSafe for AndroidConfig
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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