pub struct ApkTargeting {
pub abi_targeting: Option<AbiTargeting>,
pub language_targeting: Option<LanguageTargeting>,
pub multi_abi_targeting: Option<MultiAbiTargeting>,
pub screen_density_targeting: Option<ScreenDensityTargeting>,
pub sdk_version_targeting: Option<SdkVersionTargeting>,
pub texture_compression_format_targeting: Option<TextureCompressionFormatTargeting>,
}Expand description
Represents a set of apk-level targetings.
This type is not used in any activity, and only used as part of another schema.
Fields§
§abi_targeting: Option<AbiTargeting>The abi that the apk targets
language_targeting: Option<LanguageTargeting>The language that the apk targets
multi_abi_targeting: Option<MultiAbiTargeting>Multi-api-level targeting.
screen_density_targeting: Option<ScreenDensityTargeting>The screen density that this apk supports.
sdk_version_targeting: Option<SdkVersionTargeting>The sdk version that the apk targets
texture_compression_format_targeting: Option<TextureCompressionFormatTargeting>Texture-compression-format-level targeting
Trait Implementations§
Source§impl Clone for ApkTargeting
impl Clone for ApkTargeting
Source§fn clone(&self) -> ApkTargeting
fn clone(&self) -> ApkTargeting
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ApkTargeting
impl Debug for ApkTargeting
Source§impl Default for ApkTargeting
impl Default for ApkTargeting
Source§fn default() -> ApkTargeting
fn default() -> ApkTargeting
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ApkTargeting
impl<'de> Deserialize<'de> for ApkTargeting
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for ApkTargeting
impl Serialize for ApkTargeting
impl Part for ApkTargeting
Auto Trait Implementations§
impl Freeze for ApkTargeting
impl RefUnwindSafe for ApkTargeting
impl Send for ApkTargeting
impl Sync for ApkTargeting
impl Unpin for ApkTargeting
impl UnwindSafe for ApkTargeting
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