pub struct TimeWindow<V = f32, A = Ewma<V>>where
A: Average<V>,{ /* private fields */ }
Implementations§
Source§impl<V, A> TimeWindow<V, A>
impl<V, A> TimeWindow<V, A>
Trait Implementations§
Source§impl<V, A> Add for TimeWindow<V, A>
impl<V, A> Add for TimeWindow<V, A>
Source§type Output = TimeWindow<V, A>
type Output = TimeWindow<V, A>
The resulting type after applying the
+
operator.Source§fn add(self, rhs: TimeWindow<V, A>) -> TimeWindow<V, A>
fn add(self, rhs: TimeWindow<V, A>) -> TimeWindow<V, A>
Performs the
+
operation. Read moreAuto Trait Implementations§
impl<V, A> Freeze for TimeWindow<V, A>
impl<V, A> RefUnwindSafe for TimeWindow<V, A>where
V: RefUnwindSafe,
A: RefUnwindSafe,
impl<V, A> Send for TimeWindow<V, A>
impl<V, A> Sync for TimeWindow<V, A>
impl<V, A> Unpin for TimeWindow<V, A>
impl<V, A> UnwindSafe for TimeWindow<V, A>where
V: UnwindSafe,
A: UnwindSafe,
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