pub enum ExpType {
NIL = 0,
BOOL = 1,
INT = 2,
STRING = 3,
LIST = 4,
MAP = 5,
BLOB = 6,
FLOAT = 7,
GEO = 8,
HLL = 9,
}
Expand description
Expression Data Types for usage in some FilterExpressions
on for example Map and List
Variants§
NIL = 0
NIL Expression Type
BOOL = 1
BOOLEAN Expression Type
INT = 2
INTEGER Expression Type
STRING = 3
STRING Expression Type
LIST = 4
LIST Expression Type
MAP = 5
MAP Expression Type
BLOB = 6
BLOB Expression Type
FLOAT = 7
FLOAT Expression Type
GEO = 8
GEO String Expression Type
HLL = 9
HLL Expression Type
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ExpType
impl RefUnwindSafe for ExpType
impl Send for ExpType
impl Sync for ExpType
impl Unpin for ExpType
impl UnwindSafe for ExpType
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