pub struct GeneratedAssetPackSlice {
pub download_id: Option<String>,
pub module_name: Option<String>,
pub slice_id: Option<String>,
pub version: Option<i64>,
}Expand description
Download metadata for an asset pack slice.
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.
module_name: Option<String>Name of the module that this asset slice belongs to.
slice_id: Option<String>Asset slice ID.
version: Option<i64>Asset module version.
Trait Implementations§
Source§impl Clone for GeneratedAssetPackSlice
impl Clone for GeneratedAssetPackSlice
Source§fn clone(&self) -> GeneratedAssetPackSlice
fn clone(&self) -> GeneratedAssetPackSlice
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 GeneratedAssetPackSlice
impl Debug for GeneratedAssetPackSlice
Source§impl Default for GeneratedAssetPackSlice
impl Default for GeneratedAssetPackSlice
Source§fn default() -> GeneratedAssetPackSlice
fn default() -> GeneratedAssetPackSlice
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GeneratedAssetPackSlice
impl<'de> Deserialize<'de> for GeneratedAssetPackSlice
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 GeneratedAssetPackSlice
impl Serialize for GeneratedAssetPackSlice
impl Part for GeneratedAssetPackSlice
Auto Trait Implementations§
impl Freeze for GeneratedAssetPackSlice
impl RefUnwindSafe for GeneratedAssetPackSlice
impl Send for GeneratedAssetPackSlice
impl Sync for GeneratedAssetPackSlice
impl Unpin for GeneratedAssetPackSlice
impl UnwindSafe for GeneratedAssetPackSlice
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