pub struct Targets {
pub destination_target_id: Option<String>,
pub source_target_id: Option<String>,
}Expand description
The targets involved in a single timed promotion.
This type is not used in any activity, and only used as part of another schema.
Fields§
§destination_target_id: Option<String>Optional. The destination target ID.
source_target_id: Option<String>Optional. The source target ID.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Targets
impl<'de> Deserialize<'de> for Targets
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 Targets
Auto Trait Implementations§
impl Freeze for Targets
impl RefUnwindSafe for Targets
impl Send for Targets
impl Sync for Targets
impl Unpin for Targets
impl UnwindSafe for Targets
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