pub struct ApkBinary {
pub sha1: Option<String>,
pub sha256: Option<String>,
}Expand description
Represents the binary payload of an APK.
This type is not used in any activity, and only used as part of another schema.
Fields§
§sha1: Option<String>A sha1 hash of the APK payload, encoded as a hex string and matching the output of the sha1sum command.
sha256: Option<String>A sha256 hash of the APK payload, encoded as a hex string and matching the output of the sha256sum command.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ApkBinary
impl<'de> Deserialize<'de> for ApkBinary
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 Part for ApkBinary
Auto Trait Implementations§
impl Freeze for ApkBinary
impl RefUnwindSafe for ApkBinary
impl Send for ApkBinary
impl Sync for ApkBinary
impl Unpin for ApkBinary
impl UnwindSafe for ApkBinary
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