#[non_exhaustive]pub struct EntityV3QueueDatadog {
pub events: Option<Vec<EntityV3DatadogEventItem>>,
pub logs: Option<Vec<EntityV3DatadogLogItem>>,
pub performance_data: Option<EntityV3DatadogPerformance>,
/* private fields */
}
Expand description
Datadog product integrations for the datastore 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.
Implementations§
Source§impl EntityV3QueueDatadog
impl EntityV3QueueDatadog
pub fn new() -> EntityV3QueueDatadog
pub fn events(self, value: Vec<EntityV3DatadogEventItem>) -> Self
pub fn logs(self, value: Vec<EntityV3DatadogLogItem>) -> Self
pub fn performance_data(self, value: EntityV3DatadogPerformance) -> Self
Trait Implementations§
Source§impl Clone for EntityV3QueueDatadog
impl Clone for EntityV3QueueDatadog
Source§fn clone(&self) -> EntityV3QueueDatadog
fn clone(&self) -> EntityV3QueueDatadog
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 EntityV3QueueDatadog
impl Debug for EntityV3QueueDatadog
Source§impl Default for EntityV3QueueDatadog
impl Default for EntityV3QueueDatadog
Source§impl<'de> Deserialize<'de> for EntityV3QueueDatadog
impl<'de> Deserialize<'de> for EntityV3QueueDatadog
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 EntityV3QueueDatadog
impl PartialEq for EntityV3QueueDatadog
Source§impl Serialize for EntityV3QueueDatadog
impl Serialize for EntityV3QueueDatadog
impl StructuralPartialEq for EntityV3QueueDatadog
Auto Trait Implementations§
impl Freeze for EntityV3QueueDatadog
impl RefUnwindSafe for EntityV3QueueDatadog
impl Send for EntityV3QueueDatadog
impl Sync for EntityV3QueueDatadog
impl Unpin for EntityV3QueueDatadog
impl UnwindSafe for EntityV3QueueDatadog
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