pub struct NullCoalesceExpr {
pub left: Box<Expr>,
pub right: Box<Expr>,
}Fields§
§left: Box<Expr>§right: Box<Expr>Trait Implementations§
Source§impl Clone for NullCoalesceExpr
impl Clone for NullCoalesceExpr
Source§fn clone(&self) -> NullCoalesceExpr
fn clone(&self) -> NullCoalesceExpr
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 NullCoalesceExpr
impl Debug for NullCoalesceExpr
Auto Trait Implementations§
impl Freeze for NullCoalesceExpr
impl RefUnwindSafe for NullCoalesceExpr
impl Send for NullCoalesceExpr
impl Sync for NullCoalesceExpr
impl Unpin for NullCoalesceExpr
impl UnsafeUnpin for NullCoalesceExpr
impl UnwindSafe for NullCoalesceExpr
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