pub struct SplitDeliveryData {
pub name: Option<String>,
pub download_size: Option<i64>,
pub compressed_size: Option<i64>,
pub sha1: Option<String>,
pub download_url: Option<String>,
pub compressed_download_url: Option<String>,
pub patch_data: Option<AndroidAppPatchData>,
pub compressed_app_data: Option<CompressedAppData>,
pub sha256: Option<String>,
}Fields§
§name: Option<String>§download_size: Option<i64>§compressed_size: Option<i64>§sha1: Option<String>§download_url: Option<String>§compressed_download_url: Option<String>§patch_data: Option<AndroidAppPatchData>§compressed_app_data: Option<CompressedAppData>§sha256: Option<String>Implementations§
Source§impl SplitDeliveryData
impl SplitDeliveryData
Sourcepub fn download_size(&self) -> i64
pub fn download_size(&self) -> i64
Returns the value of download_size, or the default value if download_size is unset.
Sourcepub fn compressed_size(&self) -> i64
pub fn compressed_size(&self) -> i64
Returns the value of compressed_size, or the default value if compressed_size is unset.
Sourcepub fn download_url(&self) -> &str
pub fn download_url(&self) -> &str
Returns the value of download_url, or the default value if download_url is unset.
Sourcepub fn compressed_download_url(&self) -> &str
pub fn compressed_download_url(&self) -> &str
Returns the value of compressed_download_url, or the default value if compressed_download_url is unset.
Trait Implementations§
Source§impl Clone for SplitDeliveryData
impl Clone for SplitDeliveryData
Source§fn clone(&self) -> SplitDeliveryData
fn clone(&self) -> SplitDeliveryData
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 SplitDeliveryData
impl Debug for SplitDeliveryData
Source§impl Default for SplitDeliveryData
impl Default for SplitDeliveryData
Source§impl Message for SplitDeliveryData
impl Message for SplitDeliveryData
Source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
Returns the encoded length of the message without a length delimiter.
Source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
Encodes the message to a buffer. Read more
Source§fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Encodes the message to a newly allocated buffer.
Source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
Encodes the message with a length-delimiter to a buffer. Read more
Source§fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Encodes the message with a length-delimiter to a newly allocated buffer.
Source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Decodes an instance of the message from a buffer. Read more
Source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Decodes a length-delimited instance of the message from the buffer.
Source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
Decodes an instance of the message from a buffer, and merges it into
self. Read moreSource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
Decodes a length-delimited instance of the message from buffer, and
merges it into
self.Source§impl PartialEq for SplitDeliveryData
impl PartialEq for SplitDeliveryData
impl StructuralPartialEq for SplitDeliveryData
Auto Trait Implementations§
impl Freeze for SplitDeliveryData
impl RefUnwindSafe for SplitDeliveryData
impl Send for SplitDeliveryData
impl Sync for SplitDeliveryData
impl Unpin for SplitDeliveryData
impl UnwindSafe for SplitDeliveryData
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