pub struct TargetingInfo {
pub asset_slice_set: Option<Vec<AssetSliceSet>>,
pub package_name: Option<String>,
pub variant: Option<Vec<SplitApkVariant>>,
}Expand description
Targeting information about the generated apks.
This type is not used in any activity, and only used as part of another schema.
Fields§
§asset_slice_set: Option<Vec<AssetSliceSet>>List of created asset slices.
package_name: Option<String>The package name of this app.
variant: Option<Vec<SplitApkVariant>>List of the created variants.
Trait Implementations§
Source§impl Clone for TargetingInfo
impl Clone for TargetingInfo
Source§fn clone(&self) -> TargetingInfo
fn clone(&self) -> TargetingInfo
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TargetingInfo
impl Debug for TargetingInfo
Source§impl Default for TargetingInfo
impl Default for TargetingInfo
Source§fn default() -> TargetingInfo
fn default() -> TargetingInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TargetingInfo
impl<'de> Deserialize<'de> for TargetingInfo
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
impl Part for TargetingInfo
Auto Trait Implementations§
impl Freeze for TargetingInfo
impl RefUnwindSafe for TargetingInfo
impl Send for TargetingInfo
impl Sync for TargetingInfo
impl Unpin for TargetingInfo
impl UnsafeUnpin for TargetingInfo
impl UnwindSafe for TargetingInfo
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