Struct sc_telemetry::TelemetryHandle
source · pub struct TelemetryHandle { /* private fields */ }
Expand description
Handle to a Telemetry
.
Used to report telemetry messages.
Implementations
sourceimpl TelemetryHandle
impl TelemetryHandle
sourcepub fn send_telemetry(
&self,
verbosity: VerbosityLevel,
payload: Map<String, Value>
)
pub fn send_telemetry(
&self,
verbosity: VerbosityLevel,
payload: Map<String, Value>
)
Send telemetry messages.
sourcepub fn on_connect_stream(&self) -> Receiver<()>
pub fn on_connect_stream(&self) -> Receiver<()>
Get event stream for telemetry connection established events.
This function will return an error if the telemetry has already been started by
Telemetry::start_telemetry
.
Trait Implementations
sourceimpl Clone for TelemetryHandle
impl Clone for TelemetryHandle
sourcefn clone(&self) -> TelemetryHandle
fn clone(&self) -> TelemetryHandle
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations
impl !RefUnwindSafe for TelemetryHandle
impl Send for TelemetryHandle
impl Sync for TelemetryHandle
impl Unpin for TelemetryHandle
impl !UnwindSafe for TelemetryHandle
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> SaturatedConversion for T
impl<T> SaturatedConversion for T
sourcefn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
sourcefn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
Consume self to return an equivalent value of
T
. Read moresourceimpl<T, S> UniqueSaturatedInto<T> for Swhere
T: Bounded,
S: TryInto<T>,
impl<T, S> UniqueSaturatedInto<T> for Swhere
T: Bounded,
S: TryInto<T>,
sourcefn unique_saturated_into(self) -> T
fn unique_saturated_into(self) -> T
Consume self to return an equivalent value of
T
.