pub struct Apk {
pub binary: Option<ApkBinary>,
pub version_code: Option<i32>,
}Expand description
There is no detailed description.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- apks upload edits (response)
Fields§
§binary: Option<ApkBinary>Information about the binary payload of this APK.
version_code: Option<i32>The version code of the APK, as specified in the APK’s manifest file.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Apk
impl<'de> Deserialize<'de> for Apk
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 ResponseResult for Apk
Auto Trait Implementations§
impl Freeze for Apk
impl RefUnwindSafe for Apk
impl Send for Apk
impl Sync for Apk
impl Unpin for Apk
impl UnwindSafe for Apk
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