#[non_exhaustive]pub struct EntityV3SystemDatadog {
pub events: Option<Vec<EntityV3DatadogEventItem>>,
pub logs: Option<Vec<EntityV3DatadogLogItem>>,
pub performance_data: Option<EntityV3DatadogPerformance>,
pub pipelines: Option<EntityV3DatadogPipelines>,
/* private fields */
}
Expand description
Datadog product integrations for the service entity.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.events: Option<Vec<EntityV3DatadogEventItem>>
Events associations.
logs: Option<Vec<EntityV3DatadogLogItem>>
Logs association.
performance_data: Option<EntityV3DatadogPerformance>
Performance stats association.
pipelines: Option<EntityV3DatadogPipelines>
CI Pipelines association.
Implementations§
Source§impl EntityV3SystemDatadog
impl EntityV3SystemDatadog
pub fn new() -> EntityV3SystemDatadog
pub fn events(self, value: Vec<EntityV3DatadogEventItem>) -> Self
pub fn logs(self, value: Vec<EntityV3DatadogLogItem>) -> Self
pub fn performance_data(self, value: EntityV3DatadogPerformance) -> Self
pub fn pipelines(self, value: EntityV3DatadogPipelines) -> Self
Trait Implementations§
Source§impl Clone for EntityV3SystemDatadog
impl Clone for EntityV3SystemDatadog
Source§fn clone(&self) -> EntityV3SystemDatadog
fn clone(&self) -> EntityV3SystemDatadog
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 EntityV3SystemDatadog
impl Debug for EntityV3SystemDatadog
Source§impl Default for EntityV3SystemDatadog
impl Default for EntityV3SystemDatadog
Source§impl<'de> Deserialize<'de> for EntityV3SystemDatadog
impl<'de> Deserialize<'de> for EntityV3SystemDatadog
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 EntityV3SystemDatadog
impl PartialEq for EntityV3SystemDatadog
Source§impl Serialize for EntityV3SystemDatadog
impl Serialize for EntityV3SystemDatadog
impl StructuralPartialEq for EntityV3SystemDatadog
Auto Trait Implementations§
impl Freeze for EntityV3SystemDatadog
impl RefUnwindSafe for EntityV3SystemDatadog
impl Send for EntityV3SystemDatadog
impl Sync for EntityV3SystemDatadog
impl Unpin for EntityV3SystemDatadog
impl UnwindSafe for EntityV3SystemDatadog
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