pub struct WithFill {
pub from: Option<Expr>,
pub to: Option<Expr>,
pub step: Option<Expr>,
}Expand description
ClickHouse WITH FILL modifier for ORDER BY clause.
Supported by ClickHouse syntax
WITH FILL options for ClickHouse ORDER BY expressions.
Fields§
§from: Option<Expr>Optional lower bound expression for the fill range (FROM <expr>).
to: Option<Expr>Optional upper bound expression for the fill range (TO <expr>).
step: Option<Expr>Optional step expression specifying interpolation step (STEP <expr>).
Trait Implementations§
Source§impl Ord for WithFill
impl Ord for WithFill
Source§impl PartialOrd for WithFill
impl PartialOrd for WithFill
Source§impl VisitMut for WithFill
impl VisitMut for WithFill
Source§fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
Mutably visit this node with the provided
VisitorMut. Read moreimpl Eq for WithFill
impl StructuralPartialEq for WithFill
Auto Trait Implementations§
impl Freeze for WithFill
impl RefUnwindSafe for WithFill
impl Send for WithFill
impl Sync for WithFill
impl Unpin for WithFill
impl UnsafeUnpin for WithFill
impl UnwindSafe for WithFill
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