Struct sql_migration_sim::ast::MacroArg
source · pub struct MacroArg {
pub name: Ident,
pub default_expr: Option<Expr>,
}
Expand description
NAME = <EXPR>
arguments for DuckDB macros
See Create Macro - DuckDB for more details
Fields§
§name: Ident
§default_expr: Option<Expr>
Implementations§
Trait Implementations§
source§impl Ord for MacroArg
impl Ord for MacroArg
source§impl PartialEq for MacroArg
impl PartialEq for MacroArg
source§impl PartialOrd for MacroArg
impl PartialOrd for MacroArg
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Eq for MacroArg
impl StructuralEq for MacroArg
impl StructuralPartialEq for MacroArg
Auto Trait Implementations§
impl RefUnwindSafe for MacroArg
impl Send for MacroArg
impl Sync for MacroArg
impl Unpin for MacroArg
impl UnwindSafe for MacroArg
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