pub struct WindowedStats<T> { /* private fields */ }
Implementations§
Source§impl<T: Default> WindowedStats<T>
impl<T: Default> WindowedStats<T>
Source§impl<T: Into<u64> + Clone> WindowedStats<T>
impl<T: Into<u64> + Clone> WindowedStats<T>
pub fn log_inspect_uint_array( &self, node: &InspectNode, property_name: &'static str, )
Source§impl<T: Into<i64> + Clone> WindowedStats<T>
impl<T: Into<i64> + Clone> WindowedStats<T>
pub fn log_inspect_int_array( &self, node: &InspectNode, property_name: &'static str, )
Source§impl WindowedStats<SumAndCount>
impl WindowedStats<SumAndCount>
pub fn log_avg_inspect_double_array( &self, node: &InspectNode, property_name: &'static str, )
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for WindowedStats<T>
impl<T> !RefUnwindSafe for WindowedStats<T>
impl<T> Send for WindowedStats<T>where
T: Send,
impl<T> !Sync for WindowedStats<T>
impl<T> Unpin for WindowedStats<T>where
T: Unpin,
impl<T> !UnwindSafe for WindowedStats<T>
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
§impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
§impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more