pub struct Bundle {
pub sha1: Option<String>,
pub sha256: Option<String>,
pub version_code: Option<i32>,
}Expand description
Information about an app bundle. The resource for BundlesService.
§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).
- bundles upload edits (response)
Fields§
§sha1: Option<String>A sha1 hash of the upload payload, encoded as a hex string and matching the output of the sha1sum command.
sha256: Option<String>A sha256 hash of the upload payload, encoded as a hex string and matching the output of the sha256sum command.
version_code: Option<i32>The version code of the Android App Bundle, as specified in the Android App Bundle’s base module APK manifest file.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Bundle
impl<'de> Deserialize<'de> for Bundle
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 Bundle
Auto Trait Implementations§
impl Freeze for Bundle
impl RefUnwindSafe for Bundle
impl Send for Bundle
impl Sync for Bundle
impl Unpin for Bundle
impl UnwindSafe for Bundle
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