pub struct LagFunction { /* private fields */ }Expand description
LAG window function
Returns the value from a row that is offset rows before the current row
within the partition. If there is no such row, returns the default value.
Implementations§
Source§impl LagFunction
impl LagFunction
Trait Implementations§
Source§impl Default for LagFunction
impl Default for LagFunction
Source§fn default() -> LagFunction
fn default() -> LagFunction
Returns the “default value” for a type. Read more
Source§impl WindowFunction for LagFunction
impl WindowFunction for LagFunction
Auto Trait Implementations§
impl Freeze for LagFunction
impl RefUnwindSafe for LagFunction
impl Send for LagFunction
impl Sync for LagFunction
impl Unpin for LagFunction
impl UnsafeUnpin for LagFunction
impl UnwindSafe for LagFunction
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> CompactArcDrop for T
impl<T> CompactArcDrop for T
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