pub enum IndexExpression {
Lower(&'static str),
Upper(&'static str),
Trim(&'static str),
LowerTrim(&'static str),
Date(&'static str),
Year(&'static str),
Month(&'static str),
Day(&'static str),
}Expand description
IndexExpression
Canonical deterministic expression key metadata for expression indexes. This enum is semantic authority across schema/runtime/planner boundaries.
Variants§
Lower(&'static str)
Upper(&'static str)
Trim(&'static str)
LowerTrim(&'static str)
Date(&'static str)
Year(&'static str)
Month(&'static str)
Day(&'static str)
Implementations§
Trait Implementations§
Source§impl Clone for IndexExpression
impl Clone for IndexExpression
Source§fn clone(&self) -> IndexExpression
fn clone(&self) -> IndexExpression
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 IndexExpression
impl Debug for IndexExpression
Source§impl Display for IndexExpression
impl Display for IndexExpression
Source§impl PartialEq for IndexExpression
impl PartialEq for IndexExpression
impl Copy for IndexExpression
impl Eq for IndexExpression
impl StructuralPartialEq for IndexExpression
Auto Trait Implementations§
impl Freeze for IndexExpression
impl RefUnwindSafe for IndexExpression
impl Send for IndexExpression
impl Sync for IndexExpression
impl Unpin for IndexExpression
impl UnsafeUnpin for IndexExpression
impl UnwindSafe for IndexExpression
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