pub struct RemoteInAppUpdateDataPerBundle {
pub recovered_device_count: Option<i64>,
pub total_device_count: Option<i64>,
pub version_code: Option<i64>,
}Expand description
Data related to the recovery action at bundle level.
This type is not used in any activity, and only used as part of another schema.
Fields§
§recovered_device_count: Option<i64>Total number of devices which have been rescued.
total_device_count: Option<i64>Total number of devices affected by this recovery action associated with bundle of the app.
version_code: Option<i64>Version Code corresponding to the target bundle.
Trait Implementations§
Source§impl Clone for RemoteInAppUpdateDataPerBundle
impl Clone for RemoteInAppUpdateDataPerBundle
Source§fn clone(&self) -> RemoteInAppUpdateDataPerBundle
fn clone(&self) -> RemoteInAppUpdateDataPerBundle
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 Default for RemoteInAppUpdateDataPerBundle
impl Default for RemoteInAppUpdateDataPerBundle
Source§fn default() -> RemoteInAppUpdateDataPerBundle
fn default() -> RemoteInAppUpdateDataPerBundle
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RemoteInAppUpdateDataPerBundle
impl<'de> Deserialize<'de> for RemoteInAppUpdateDataPerBundle
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 RemoteInAppUpdateDataPerBundle
Auto Trait Implementations§
impl Freeze for RemoteInAppUpdateDataPerBundle
impl RefUnwindSafe for RemoteInAppUpdateDataPerBundle
impl Send for RemoteInAppUpdateDataPerBundle
impl Sync for RemoteInAppUpdateDataPerBundle
impl Unpin for RemoteInAppUpdateDataPerBundle
impl UnwindSafe for RemoteInAppUpdateDataPerBundle
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