Struct scyllax_parser::where::WhereClause
source · pub struct WhereClause {
pub column: Column,
pub operator: ComparisonOperator,
pub value: Value,
}Expand description
Represents a single where clause on a CQL statement
Fields§
§column: ColumnThe column being queried
operator: ComparisonOperatorThe operator being used
value: ValueThe variable being compared
Trait Implementations§
source§impl Debug for WhereClause
impl Debug for WhereClause
source§impl PartialEq for WhereClause
impl PartialEq for WhereClause
source§fn eq(&self, other: &WhereClause) -> bool
fn eq(&self, other: &WhereClause) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for WhereClause
Auto Trait Implementations§
impl RefUnwindSafe for WhereClause
impl Send for WhereClause
impl Sync for WhereClause
impl Unpin for WhereClause
impl UnwindSafe for WhereClause
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