pub enum DeclareAssignment {
Expr(Box<Expr>),
Default(Box<Expr>),
DuckAssignment(Box<Expr>),
For(Box<Expr>),
}
Expand description
Represents an expression assignment within a variable DECLARE
statement.
Examples:
DECLARE variable_name := 42
DECLARE variable_name DEFAULT 42
Variants§
Expr(Box<Expr>)
Plain expression specified.
Default(Box<Expr>)
Expression assigned via the DEFAULT
keyword
DuckAssignment(Box<Expr>)
Expression assigned via the :=
syntax
Example:
DECLARE variable_name := 42;
For(Box<Expr>)
Expression via the FOR
keyword
Example:
DECLARE c1 CURSOR FOR res
Trait Implementations§
Source§impl Clone for DeclareAssignment
impl Clone for DeclareAssignment
Source§fn clone(&self) -> DeclareAssignment
fn clone(&self) -> DeclareAssignment
Returns a copy 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 DeclareAssignment
impl Debug for DeclareAssignment
Source§impl Display for DeclareAssignment
impl Display for DeclareAssignment
Source§impl Hash for DeclareAssignment
impl Hash for DeclareAssignment
Source§impl Ord for DeclareAssignment
impl Ord for DeclareAssignment
Source§fn cmp(&self, other: &DeclareAssignment) -> Ordering
fn cmp(&self, other: &DeclareAssignment) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for DeclareAssignment
impl PartialEq for DeclareAssignment
Source§impl PartialOrd for DeclareAssignment
impl PartialOrd for DeclareAssignment
impl Eq for DeclareAssignment
impl StructuralPartialEq for DeclareAssignment
Auto Trait Implementations§
impl Freeze for DeclareAssignment
impl RefUnwindSafe for DeclareAssignment
impl Send for DeclareAssignment
impl Sync for DeclareAssignment
impl Unpin for DeclareAssignment
impl UnwindSafe for DeclareAssignment
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