pub enum ExportDestination {
Prometheus {
endpoint: String,
},
InfluxDB {
endpoint: String,
database: String,
},
CloudWatch {
region: String,
},
DataDog {
api_key: String,
},
StatsD {
endpoint: String,
},
}Expand description
Export destinations
Variants§
Trait Implementations§
Source§impl Clone for ExportDestination
impl Clone for ExportDestination
Source§fn clone(&self) -> ExportDestination
fn clone(&self) -> ExportDestination
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 ExportDestination
impl Debug for ExportDestination
Source§impl<'de> Deserialize<'de> for ExportDestination
impl<'de> Deserialize<'de> for ExportDestination
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 ExportDestination
impl RefUnwindSafe for ExportDestination
impl Send for ExportDestination
impl Sync for ExportDestination
impl Unpin for ExportDestination
impl UnwindSafe for ExportDestination
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