pub struct WindowResult<G, Coord, Output> {
pub row_number: RowNumber,
pub group: G,
pub span: WindowSpan<Coord>,
pub value: Output,
pub prior: Option<Output>,
pub kind: EmitKind,
}Fields§
§row_number: RowNumber§group: G§span: WindowSpan<Coord>§value: Output§prior: Option<Output>§kind: EmitKindAuto Trait Implementations§
impl<G, Coord, Output> Freeze for WindowResult<G, Coord, Output>
impl<G, Coord, Output> RefUnwindSafe for WindowResult<G, Coord, Output>where
G: RefUnwindSafe,
WindowSpan<Coord>: RefUnwindSafe,
Output: RefUnwindSafe,
Option<Output>: RefUnwindSafe,
impl<G, Coord, Output> Send for WindowResult<G, Coord, Output>
impl<G, Coord, Output> Sync for WindowResult<G, Coord, Output>
impl<G, Coord, Output> Unpin for WindowResult<G, Coord, Output>
impl<G, Coord, Output> UnsafeUnpin for WindowResult<G, Coord, Output>where
G: UnsafeUnpin,
WindowSpan<Coord>: UnsafeUnpin,
Output: UnsafeUnpin,
Option<Output>: UnsafeUnpin,
impl<G, Coord, Output> UnwindSafe for WindowResult<G, Coord, Output>
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> 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