pub enum UnaryOpType {
Negative,
Not,
}Variants§
Trait Implementations§
Source§impl Clone for UnaryOpType
impl Clone for UnaryOpType
Source§fn clone(&self) -> UnaryOpType
fn clone(&self) -> UnaryOpType
Returns a duplicate 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 UnaryOpType
impl Debug for UnaryOpType
Source§impl OpPrecedence for UnaryOpType
impl OpPrecedence for UnaryOpType
fn precedence(&self, writer: &dyn SqlWriter) -> i32
Source§impl PartialEq for UnaryOpType
impl PartialEq for UnaryOpType
impl Copy for UnaryOpType
impl StructuralPartialEq for UnaryOpType
Auto Trait Implementations§
impl Freeze for UnaryOpType
impl RefUnwindSafe for UnaryOpType
impl Send for UnaryOpType
impl Sync for UnaryOpType
impl Unpin for UnaryOpType
impl UnwindSafe for UnaryOpType
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