pub struct TargetingUpdate {
pub all_users: Option<AllUsers>,
pub android_sdks: Option<AndroidSdks>,
pub regions: Option<Regions>,
}Expand description
Update type for targeting. Note it is always a subset Targeting.
This type is not used in any activity, and only used as part of another schema.
Fields§
§all_users: Option<AllUsers>All users are targeted.
android_sdks: Option<AndroidSdks>Additional android sdk levels are targeted by the recovery action.
regions: Option<Regions>Additional regions are targeted by the recovery action.
Trait Implementations§
Source§impl Clone for TargetingUpdate
impl Clone for TargetingUpdate
Source§fn clone(&self) -> TargetingUpdate
fn clone(&self) -> TargetingUpdate
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 TargetingUpdate
impl Debug for TargetingUpdate
Source§impl Default for TargetingUpdate
impl Default for TargetingUpdate
Source§fn default() -> TargetingUpdate
fn default() -> TargetingUpdate
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TargetingUpdate
impl<'de> Deserialize<'de> for TargetingUpdate
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
Source§impl Serialize for TargetingUpdate
impl Serialize for TargetingUpdate
impl Part for TargetingUpdate
Auto Trait Implementations§
impl Freeze for TargetingUpdate
impl RefUnwindSafe for TargetingUpdate
impl Send for TargetingUpdate
impl Sync for TargetingUpdate
impl Unpin for TargetingUpdate
impl UnwindSafe for TargetingUpdate
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