pub struct TelemetryTx { /* private fields */ }Expand description
Lightweight wrapper around a telemetry sender.
Stored in nodes that wish to emit telemetry from generate() /
process() / consume(). Non-blocking try_send is safe for the
audio thread.
Implementations§
Trait Implementations§
Source§impl Clone for TelemetryTx
impl Clone for TelemetryTx
Source§fn clone(&self) -> TelemetryTx
fn clone(&self) -> TelemetryTx
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 moreAuto Trait Implementations§
impl Freeze for TelemetryTx
impl RefUnwindSafe for TelemetryTx
impl Send for TelemetryTx
impl Sync for TelemetryTx
impl Unpin for TelemetryTx
impl UnsafeUnpin for TelemetryTx
impl UnwindSafe for TelemetryTx
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