pub struct ExpansionFile {
pub file_size: Option<i64>,
pub references_version: 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).
- expansionfiles get edits (response)
- expansionfiles patch edits (request|response)
- expansionfiles update edits (request|response)
Fields§
§file_size: Option<i64>If set this field indicates that this APK has an Expansion File uploaded to it: this APK does not reference another APK’s Expansion File. The field’s value is the size of the uploaded Expansion File in bytes.
references_version: Option<i32>If set this APK’s Expansion File references another APK’s Expansion File. The file_size field will not be set.
Trait Implementations§
Source§impl Clone for ExpansionFile
impl Clone for ExpansionFile
Source§fn clone(&self) -> ExpansionFile
fn clone(&self) -> ExpansionFile
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 ExpansionFile
impl Debug for ExpansionFile
Source§impl Default for ExpansionFile
impl Default for ExpansionFile
Source§fn default() -> ExpansionFile
fn default() -> ExpansionFile
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExpansionFile
impl<'de> Deserialize<'de> for ExpansionFile
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 ExpansionFile
impl Serialize for ExpansionFile
impl RequestValue for ExpansionFile
impl ResponseResult for ExpansionFile
Auto Trait Implementations§
impl Freeze for ExpansionFile
impl RefUnwindSafe for ExpansionFile
impl Send for ExpansionFile
impl Sync for ExpansionFile
impl Unpin for ExpansionFile
impl UnwindSafe for ExpansionFile
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