pub struct SiftStreamMetrics { /* private fields */ }Expand description
Primary metrics collection struct for sift stream operations.
This struct is managed internally and users should never need to create this, instead using the crate::SiftStreamBuilder
Implementations§
Source§impl SiftStreamMetrics
impl SiftStreamMetrics
Sourcepub fn new() -> SiftStreamMetrics
pub fn new() -> SiftStreamMetrics
Creates a new SiftStreamMetrics instance with current timestamp. Users should never need to call this and should instead use crate::SiftStreamBuilder
Trait Implementations§
Source§impl Debug for SiftStreamMetrics
impl Debug for SiftStreamMetrics
Source§impl Default for SiftStreamMetrics
impl Default for SiftStreamMetrics
Source§fn default() -> SiftStreamMetrics
fn default() -> SiftStreamMetrics
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl !Freeze for SiftStreamMetrics
impl RefUnwindSafe for SiftStreamMetrics
impl Send for SiftStreamMetrics
impl Sync for SiftStreamMetrics
impl Unpin for SiftStreamMetrics
impl UnsafeUnpin for SiftStreamMetrics
impl UnwindSafe for SiftStreamMetrics
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::RequestSource§impl<T> RetryExt for T
impl<T> RetryExt for T
Source§fn retrying(self, cfg: RetryConfig) -> Retrying<Self>
fn retrying(self, cfg: RetryConfig) -> Retrying<Self>
Wraps
self in a Retrying adapter with the given configuration.