pub struct LeadLagFunc {
pub this: Expression,
pub offset: Option<Expression>,
pub default: Option<Expression>,
pub ignore_nulls: bool,
}Expand description
LEAD / LAG function
Fields§
§this: Expression§offset: Option<Expression>§default: Option<Expression>§ignore_nulls: boolTrait Implementations§
Source§impl Clone for LeadLagFunc
impl Clone for LeadLagFunc
Source§fn clone(&self) -> LeadLagFunc
fn clone(&self) -> LeadLagFunc
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LeadLagFunc
impl Debug for LeadLagFunc
Source§impl<'de> Deserialize<'de> for LeadLagFunc
impl<'de> Deserialize<'de> for LeadLagFunc
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for LeadLagFunc
impl PartialEq for LeadLagFunc
Source§impl Serialize for LeadLagFunc
impl Serialize for LeadLagFunc
impl StructuralPartialEq for LeadLagFunc
Auto Trait Implementations§
impl Freeze for LeadLagFunc
impl RefUnwindSafe for LeadLagFunc
impl Send for LeadLagFunc
impl Sync for LeadLagFunc
impl Unpin for LeadLagFunc
impl UnwindSafe for LeadLagFunc
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