pub struct GeneratedStandaloneApk {
pub download_id: Option<String>,
pub variant_id: Option<i32>,
}Expand description
Download metadata for a standalone APK.
This type is not used in any activity, and only used as part of another schema.
Fields§
§download_id: Option<String>Download ID, which uniquely identifies the APK to download. Should be supplied to generatedapks.download method.
variant_id: Option<i32>ID of the generated variant.
Trait Implementations§
Source§impl Clone for GeneratedStandaloneApk
impl Clone for GeneratedStandaloneApk
Source§fn clone(&self) -> GeneratedStandaloneApk
fn clone(&self) -> GeneratedStandaloneApk
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 GeneratedStandaloneApk
impl Debug for GeneratedStandaloneApk
Source§impl Default for GeneratedStandaloneApk
impl Default for GeneratedStandaloneApk
Source§fn default() -> GeneratedStandaloneApk
fn default() -> GeneratedStandaloneApk
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GeneratedStandaloneApk
impl<'de> Deserialize<'de> for GeneratedStandaloneApk
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 GeneratedStandaloneApk
impl Serialize for GeneratedStandaloneApk
impl Part for GeneratedStandaloneApk
Auto Trait Implementations§
impl Freeze for GeneratedStandaloneApk
impl RefUnwindSafe for GeneratedStandaloneApk
impl Send for GeneratedStandaloneApk
impl Sync for GeneratedStandaloneApk
impl Unpin for GeneratedStandaloneApk
impl UnwindSafe for GeneratedStandaloneApk
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