#[non_exhaustive]pub struct EntityV3APIDatadog {
pub code_locations: Option<Vec<EntityV3DatadogCodeLocationItem>>,
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 API 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.code_locations: Option<Vec<EntityV3DatadogCodeLocationItem>>
Schema for mapping source code locations to an entity.
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 EntityV3APIDatadog
impl EntityV3APIDatadog
pub fn new() -> EntityV3APIDatadog
pub fn code_locations(self, value: Vec<EntityV3DatadogCodeLocationItem>) -> Self
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 EntityV3APIDatadog
impl Clone for EntityV3APIDatadog
Source§fn clone(&self) -> EntityV3APIDatadog
fn clone(&self) -> EntityV3APIDatadog
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 EntityV3APIDatadog
impl Debug for EntityV3APIDatadog
Source§impl Default for EntityV3APIDatadog
impl Default for EntityV3APIDatadog
Source§impl<'de> Deserialize<'de> for EntityV3APIDatadog
impl<'de> Deserialize<'de> for EntityV3APIDatadog
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 EntityV3APIDatadog
impl PartialEq for EntityV3APIDatadog
Source§impl Serialize for EntityV3APIDatadog
impl Serialize for EntityV3APIDatadog
impl StructuralPartialEq for EntityV3APIDatadog
Auto Trait Implementations§
impl Freeze for EntityV3APIDatadog
impl RefUnwindSafe for EntityV3APIDatadog
impl Send for EntityV3APIDatadog
impl Sync for EntityV3APIDatadog
impl Unpin for EntityV3APIDatadog
impl UnwindSafe for EntityV3APIDatadog
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