pub struct TargetCondition {
pub resource_prefix: String,
pub label: Option<String>,
pub property_equals: BTreeMap<String, Scalar>,
pub property_not_equals: BTreeMap<String, Scalar>,
}Fields§
§resource_prefix: String§label: Option<String>§property_equals: BTreeMap<String, Scalar>§property_not_equals: BTreeMap<String, Scalar>Trait Implementations§
Source§impl Clone for TargetCondition
impl Clone for TargetCondition
Source§fn clone(&self) -> TargetCondition
fn clone(&self) -> TargetCondition
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TargetCondition
impl Debug for TargetCondition
Source§impl<'de> Deserialize<'de> for TargetCondition
impl<'de> Deserialize<'de> for TargetCondition
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
Auto Trait Implementations§
impl Freeze for TargetCondition
impl RefUnwindSafe for TargetCondition
impl Send for TargetCondition
impl Sync for TargetCondition
impl Unpin for TargetCondition
impl UnsafeUnpin for TargetCondition
impl UnwindSafe for TargetCondition
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