pub enum SimpleTerm {
Value(Literal),
FunctionCall(QualifiedName, Vec<Term>),
TypeCast(CqlType, Box<SimpleTerm>),
}Expand description
§Simple term
- value
- function call
- cast
Variants§
Value(Literal)
Value
FunctionCall(QualifiedName, Vec<Term>)
Function call
TypeCast(CqlType, Box<SimpleTerm>)
Type cast
(type) simpleTerm
Trait Implementations§
Source§impl Debug for SimpleTerm
impl Debug for SimpleTerm
Source§impl PartialEq for SimpleTerm
impl PartialEq for SimpleTerm
impl StructuralPartialEq for SimpleTerm
Auto Trait Implementations§
impl Freeze for SimpleTerm
impl RefUnwindSafe for SimpleTerm
impl Send for SimpleTerm
impl Sync for SimpleTerm
impl Unpin for SimpleTerm
impl UnwindSafe for SimpleTerm
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