pub struct OpenTelemetryOutput {
pub enabled: bool,
pub endpoint: String,
pub service_name: String,
}Expand description
Configuration for OpenTelemetry output from the tracer.
Note: OpenTelemetry output is not yet implemented. This type is prepared for a future release.
Fields§
§enabled: bool§endpoint: String§service_name: StringTrait Implementations§
Source§impl Clone for OpenTelemetryOutput
impl Clone for OpenTelemetryOutput
Source§fn clone(&self) -> OpenTelemetryOutput
fn clone(&self) -> OpenTelemetryOutput
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 OpenTelemetryOutput
impl Debug for OpenTelemetryOutput
Source§impl<'de> Deserialize<'de> for OpenTelemetryOutput
impl<'de> Deserialize<'de> for OpenTelemetryOutput
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 OpenTelemetryOutput
impl RefUnwindSafe for OpenTelemetryOutput
impl Send for OpenTelemetryOutput
impl Sync for OpenTelemetryOutput
impl Unpin for OpenTelemetryOutput
impl UnsafeUnpin for OpenTelemetryOutput
impl UnwindSafe for OpenTelemetryOutput
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