pub struct WindowBin<V, I, R> {
pub width: R,
pub start: I,
pub summary: Summary<V>,
}
Available on crate feature
std
only.Expand description
An individual timed bin. Has a start time, a width, and the min/mean/max summary of the data within that bin.
Fields§
§width: R
§start: I
§summary: Summary<V>
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<V, I, R> Freeze for WindowBin<V, I, R>
impl<V, I, R> RefUnwindSafe for WindowBin<V, I, R>
impl<V, I, R> Send for WindowBin<V, I, R>
impl<V, I, R> Sync for WindowBin<V, I, R>
impl<V, I, R> Unpin for WindowBin<V, I, R>
impl<V, I, R> UnwindSafe for WindowBin<V, I, R>
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