pub struct IntegrationTraitsOwner {
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 IntegrationTraitsOwner
impl Clone for IntegrationTraitsOwner
Source§fn clone(&self) -> IntegrationTraitsOwner
fn clone(&self) -> IntegrationTraitsOwner
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 Debug for IntegrationTraitsOwner
impl Debug for IntegrationTraitsOwner
Source§impl Default for IntegrationTraitsOwner
impl Default for IntegrationTraitsOwner
Source§fn default() -> IntegrationTraitsOwner
fn default() -> IntegrationTraitsOwner
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IntegrationTraitsOwner
impl<'de> Deserialize<'de> for IntegrationTraitsOwner
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 IntegrationTraitsOwner
impl PartialEq for IntegrationTraitsOwner
Source§impl Serialize for IntegrationTraitsOwner
impl Serialize for IntegrationTraitsOwner
impl StructuralPartialEq for IntegrationTraitsOwner
Auto Trait Implementations§
impl Freeze for IntegrationTraitsOwner
impl RefUnwindSafe for IntegrationTraitsOwner
impl Send for IntegrationTraitsOwner
impl Sync for IntegrationTraitsOwner
impl Unpin for IntegrationTraitsOwner
impl UnwindSafe for IntegrationTraitsOwner
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