pub struct ClientDownloadRequest {Show 14 fields
pub url: Option<String>,
pub digests: Option<Digests>,
pub length: Option<i64>,
pub resources: Vec<Resource>,
pub signature: Option<SignatureInfo>,
pub user_initiated: Option<bool>,
pub client_asn: Vec<String>,
pub file_basename: Option<String>,
pub download_type: Option<i32>,
pub locale: Option<String>,
pub apk_info: Option<ApkInfo>,
pub android_id: Option<u64>,
pub originating_packages: Vec<String>,
pub originating_signature: Option<SignatureInfo>,
}Fields§
§url: Option<String>§digests: Option<Digests>§length: Option<i64>§resources: Vec<Resource>§signature: Option<SignatureInfo>§user_initiated: Option<bool>§client_asn: Vec<String>§file_basename: Option<String>§download_type: Option<i32>§locale: Option<String>§apk_info: Option<ApkInfo>§android_id: Option<u64>§originating_packages: Vec<String>§originating_signature: Option<SignatureInfo>Implementations§
Source§impl ClientDownloadRequest
impl ClientDownloadRequest
Sourcepub fn length(&self) -> i64
pub fn length(&self) -> i64
Returns the value of length, or the default value if length is unset.
Sourcepub fn user_initiated(&self) -> bool
pub fn user_initiated(&self) -> bool
Returns the value of user_initiated, or the default value if user_initiated is unset.
Sourcepub fn file_basename(&self) -> &str
pub fn file_basename(&self) -> &str
Returns the value of file_basename, or the default value if file_basename is unset.
Sourcepub fn download_type(&self) -> i32
pub fn download_type(&self) -> i32
Returns the value of download_type, or the default value if download_type is unset.
Sourcepub fn locale(&self) -> &str
pub fn locale(&self) -> &str
Returns the value of locale, or the default value if locale is unset.
Sourcepub fn android_id(&self) -> u64
pub fn android_id(&self) -> u64
Returns the value of android_id, or the default value if android_id is unset.
Trait Implementations§
Source§impl Clone for ClientDownloadRequest
impl Clone for ClientDownloadRequest
Source§fn clone(&self) -> ClientDownloadRequest
fn clone(&self) -> ClientDownloadRequest
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 ClientDownloadRequest
impl Debug for ClientDownloadRequest
Source§impl Default for ClientDownloadRequest
impl Default for ClientDownloadRequest
Source§impl Message for ClientDownloadRequest
impl Message for ClientDownloadRequest
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 ClientDownloadRequest
impl PartialEq for ClientDownloadRequest
impl StructuralPartialEq for ClientDownloadRequest
Auto Trait Implementations§
impl Freeze for ClientDownloadRequest
impl RefUnwindSafe for ClientDownloadRequest
impl Send for ClientDownloadRequest
impl Sync for ClientDownloadRequest
impl Unpin for ClientDownloadRequest
impl UnwindSafe for ClientDownloadRequest
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