pub struct IntegrationProfileStatusTraitsOwner {
pub configuration: Option<BTreeMap<String, Value>>,
pub enabled: Option<bool>,
pub target_annotations: Option<Vec<String>>,
pub target_labels: Option<Vec<String>>,
}Expand description
The configuration of Owner trait
Fields§
§configuration: Option<BTreeMap<String, Value>>Legacy trait configuration parameters.
Deprecated: for backward compatibility.
enabled: Option<bool>Can be used to enable or disable a trait. All traits share this common property.
target_annotations: Option<Vec<String>>The set of annotations to be transferred
target_labels: Option<Vec<String>>The set of labels to be transferred
Trait Implementations§
Source§impl Clone for IntegrationProfileStatusTraitsOwner
impl Clone for IntegrationProfileStatusTraitsOwner
Source§fn clone(&self) -> IntegrationProfileStatusTraitsOwner
fn clone(&self) -> IntegrationProfileStatusTraitsOwner
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 IntegrationProfileStatusTraitsOwner
impl Default for IntegrationProfileStatusTraitsOwner
Source§fn default() -> IntegrationProfileStatusTraitsOwner
fn default() -> IntegrationProfileStatusTraitsOwner
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IntegrationProfileStatusTraitsOwner
impl<'de> Deserialize<'de> for IntegrationProfileStatusTraitsOwner
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 PartialEq for IntegrationProfileStatusTraitsOwner
impl PartialEq for IntegrationProfileStatusTraitsOwner
Source§fn eq(&self, other: &IntegrationProfileStatusTraitsOwner) -> bool
fn eq(&self, other: &IntegrationProfileStatusTraitsOwner) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for IntegrationProfileStatusTraitsOwner
Auto Trait Implementations§
impl Freeze for IntegrationProfileStatusTraitsOwner
impl RefUnwindSafe for IntegrationProfileStatusTraitsOwner
impl Send for IntegrationProfileStatusTraitsOwner
impl Sync for IntegrationProfileStatusTraitsOwner
impl Unpin for IntegrationProfileStatusTraitsOwner
impl UnwindSafe for IntegrationProfileStatusTraitsOwner
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