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 moresource§impl VisitMut for MacroArg
impl VisitMut for MacroArg
fn visit<V>(&mut self, visitor: &mut V) -> ControlFlow<<V as VisitorMut>::Break>where V: VisitorMut,
impl 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
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.