pub struct SumWindow<'a, T, S> { /* private fields */ }Trait Implementations§
Source§impl<'a, T, S> RollingAggWindowNulls<'a, T> for SumWindow<'a, T, S>where
T: NativeType + IsFloat + Sub<Output = T> + NumCast,
S: NativeType + AddAssign + SubAssign + Sub<Output = S> + Add<Output = S> + NumCast,
impl<'a, T, S> RollingAggWindowNulls<'a, T> for SumWindow<'a, T, S>where
T: NativeType + IsFloat + Sub<Output = T> + NumCast,
S: NativeType + AddAssign + SubAssign + Sub<Output = S> + Add<Output = S> + NumCast,
Auto Trait Implementations§
impl<'a, T, S> Freeze for SumWindow<'a, T, S>where
S: Freeze,
impl<'a, T, S> RefUnwindSafe for SumWindow<'a, T, S>where
S: RefUnwindSafe,
T: RefUnwindSafe,
impl<'a, T, S> Send for SumWindow<'a, T, S>
impl<'a, T, S> Sync for SumWindow<'a, T, S>
impl<'a, T, S> Unpin for SumWindow<'a, T, S>where
S: Unpin,
impl<'a, T, S> UnwindSafe for SumWindow<'a, T, S>where
S: UnwindSafe,
T: RefUnwindSafe,
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> 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