pub struct AndroidCheckinResponse {
pub stats_ok: Option<bool>,
pub intent: Vec<AndroidIntentProto>,
pub time_msec: Option<i64>,
pub digest: Option<String>,
pub setting: Vec<GservicesSetting>,
pub market_ok: Option<bool>,
pub android_id: Option<u64>,
pub security_token: Option<u64>,
pub settings_diff: Option<bool>,
pub delete_setting: Vec<String>,
pub device_checkin_consistency_token: Option<String>,
}Fields§
§stats_ok: Option<bool>§intent: Vec<AndroidIntentProto>§time_msec: Option<i64>§digest: Option<String>§setting: Vec<GservicesSetting>§market_ok: Option<bool>§android_id: Option<u64>§security_token: Option<u64>§settings_diff: Option<bool>§delete_setting: Vec<String>§device_checkin_consistency_token: Option<String>Implementations§
Source§impl AndroidCheckinResponse
impl AndroidCheckinResponse
Sourcepub fn stats_ok(&self) -> bool
pub fn stats_ok(&self) -> bool
Returns the value of stats_ok, or the default value if stats_ok is unset.
Sourcepub fn time_msec(&self) -> i64
pub fn time_msec(&self) -> i64
Returns the value of time_msec, or the default value if time_msec is unset.
Sourcepub fn digest(&self) -> &str
pub fn digest(&self) -> &str
Returns the value of digest, or the default value if digest is unset.
Sourcepub fn market_ok(&self) -> bool
pub fn market_ok(&self) -> bool
Returns the value of market_ok, or the default value if market_ok 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.
Sourcepub fn security_token(&self) -> u64
pub fn security_token(&self) -> u64
Returns the value of security_token, or the default value if security_token is unset.
Sourcepub fn settings_diff(&self) -> bool
pub fn settings_diff(&self) -> bool
Returns the value of settings_diff, or the default value if settings_diff is unset.
Sourcepub fn device_checkin_consistency_token(&self) -> &str
pub fn device_checkin_consistency_token(&self) -> &str
Returns the value of device_checkin_consistency_token, or the default value if device_checkin_consistency_token is unset.
Trait Implementations§
Source§impl Clone for AndroidCheckinResponse
impl Clone for AndroidCheckinResponse
Source§fn clone(&self) -> AndroidCheckinResponse
fn clone(&self) -> AndroidCheckinResponse
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 AndroidCheckinResponse
impl Debug for AndroidCheckinResponse
Source§impl Default for AndroidCheckinResponse
impl Default for AndroidCheckinResponse
Source§impl Message for AndroidCheckinResponse
impl Message for AndroidCheckinResponse
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 AndroidCheckinResponse
impl PartialEq for AndroidCheckinResponse
impl StructuralPartialEq for AndroidCheckinResponse
Auto Trait Implementations§
impl Freeze for AndroidCheckinResponse
impl RefUnwindSafe for AndroidCheckinResponse
impl Send for AndroidCheckinResponse
impl Sync for AndroidCheckinResponse
impl Unpin for AndroidCheckinResponse
impl UnwindSafe for AndroidCheckinResponse
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