pub struct ExchangeTargetingOptionDetails {
pub exchange: Option<String>,
}Expand description
Represents a targetable exchange. This will be populated in the exchange_details field of a TargetingOption when targeting_type is TARGETING_TYPE_EXCHANGE.
This type is not used in any activity, and only used as part of another schema.
Fields§
§exchange: Option<String>Output only. The type of exchange.
Trait Implementations§
Source§impl Clone for ExchangeTargetingOptionDetails
impl Clone for ExchangeTargetingOptionDetails
Source§fn clone(&self) -> ExchangeTargetingOptionDetails
fn clone(&self) -> ExchangeTargetingOptionDetails
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 ExchangeTargetingOptionDetails
impl Default for ExchangeTargetingOptionDetails
Source§fn default() -> ExchangeTargetingOptionDetails
fn default() -> ExchangeTargetingOptionDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExchangeTargetingOptionDetails
impl<'de> Deserialize<'de> for ExchangeTargetingOptionDetails
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 ExchangeTargetingOptionDetails
Auto Trait Implementations§
impl Freeze for ExchangeTargetingOptionDetails
impl RefUnwindSafe for ExchangeTargetingOptionDetails
impl Send for ExchangeTargetingOptionDetails
impl Sync for ExchangeTargetingOptionDetails
impl Unpin for ExchangeTargetingOptionDetails
impl UnwindSafe for ExchangeTargetingOptionDetails
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