pub struct DatadogConfigurationDataPlane {
pub api_listen_address: String,
pub dogstatsd: Option<DatadogConfigurationDataPlaneDogstatsd>,
pub log_file: String,
pub otlp: Option<DatadogConfigurationDataPlaneOtlp>,
pub remote_agent_enabled: bool,
pub secure_api_listen_address: String,
pub use_new_config_stream_endpoint: bool,
}Fields§
§api_listen_address: String§dogstatsd: Option<DatadogConfigurationDataPlaneDogstatsd>§log_file: String§otlp: Option<DatadogConfigurationDataPlaneOtlp>§remote_agent_enabled: bool§secure_api_listen_address: String§use_new_config_stream_endpoint: boolTrait Implementations§
Source§impl Clone for DatadogConfigurationDataPlane
impl Clone for DatadogConfigurationDataPlane
Source§fn clone(&self) -> DatadogConfigurationDataPlane
fn clone(&self) -> DatadogConfigurationDataPlane
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for DatadogConfigurationDataPlane
impl<'de> Deserialize<'de> for DatadogConfigurationDataPlane
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 DatadogConfigurationDataPlane
impl RefUnwindSafe for DatadogConfigurationDataPlane
impl Send for DatadogConfigurationDataPlane
impl Sync for DatadogConfigurationDataPlane
impl Unpin for DatadogConfigurationDataPlane
impl UnsafeUnpin for DatadogConfigurationDataPlane
impl UnwindSafe for DatadogConfigurationDataPlane
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