pub struct EventTargetDatadog {
pub api_key: Option<String>,
pub ddtags: Option<String>,
pub service: Option<String>,
pub ddsite: Option<String>,
}
Fields§
§api_key: Option<String>
Datadog API key to use.
Tags to send with the event.
service: Option<String>
Service name to send with the event.
ddsite: Option<String>
Datadog site to send event to.
Trait Implementations§
Source§impl Clone for EventTargetDatadog
impl Clone for EventTargetDatadog
Source§fn clone(&self) -> EventTargetDatadog
fn clone(&self) -> EventTargetDatadog
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 EventTargetDatadog
impl Debug for EventTargetDatadog
Source§impl Default for EventTargetDatadog
impl Default for EventTargetDatadog
Source§fn default() -> EventTargetDatadog
fn default() -> EventTargetDatadog
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EventTargetDatadog
impl<'de> Deserialize<'de> for EventTargetDatadog
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
Auto Trait Implementations§
impl Freeze for EventTargetDatadog
impl RefUnwindSafe for EventTargetDatadog
impl Send for EventTargetDatadog
impl Sync for EventTargetDatadog
impl Unpin for EventTargetDatadog
impl UnwindSafe for EventTargetDatadog
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