pub struct Regions {
pub region_code: Option<Vec<String>>,
}Expand description
Region targeting data for app recovery action targeting.
This type is not used in any activity, and only used as part of another schema.
Fields§
§region_code: Option<Vec<String>>Regions targeted by the recovery action. Region codes are ISO 3166 Alpha-2 country codes. For example, US stands for United States of America. See https://www.iso.org/iso-3166-country-codes.html for the complete list of country codes.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Regions
impl<'de> Deserialize<'de> for Regions
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 Regions
Auto Trait Implementations§
impl Freeze for Regions
impl RefUnwindSafe for Regions
impl Send for Regions
impl Sync for Regions
impl Unpin for Regions
impl UnwindSafe for Regions
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