pub struct NA;Trait Implementations§
Source§impl Expression for NA
impl Expression for NA
Source§fn write_query(
&self,
_writer: &dyn SqlWriter,
_context: &mut Context,
_out: &mut DynQuery,
)
fn write_query( &self, _writer: &dyn SqlWriter, _context: &mut Context, _out: &mut DynQuery, )
Render the expression into SQL.
Source§fn accept_visitor(
&self,
_matcher: &mut dyn ExpressionVisitor,
_writer: &dyn SqlWriter,
_context: &mut Context,
_out: &mut DynQuery,
) -> bool
fn accept_visitor( &self, _matcher: &mut dyn ExpressionVisitor, _writer: &dyn SqlWriter, _context: &mut Context, _out: &mut DynQuery, ) -> bool
Match the expression.
Source§fn as_identifier(&self, context: &mut Context) -> String
fn as_identifier(&self, context: &mut Context) -> String
Convert expression to an identifier string.
Source§impl ExpressionCollection for NA
impl ExpressionCollection for NA
Source§impl OpPrecedence for NA
impl OpPrecedence for NA
Source§fn precedence(&self, _writer: &dyn SqlWriter) -> i32
fn precedence(&self, _writer: &dyn SqlWriter) -> i32
Lower numbers bind weaker, writers parenthesize when child precedence <= operator precedence.
Auto Trait Implementations§
impl Freeze for NA
impl RefUnwindSafe for NA
impl Send for NA
impl Sync for NA
impl Unpin for NA
impl UnsafeUnpin for NA
impl UnwindSafe for NA
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