Enum rustdb::run::CTableExpression
source · [−]#[non_exhaustive]
pub enum CTableExpression {
Base(Rc<Table>),
IdGet(Rc<Table>, CExpPtr<i64>),
IxGet(Rc<Table>, Vec<CExpPtr<Value>>, usize),
Values(Vec<Vec<CExpPtr<Value>>>),
}
Expand description
Compiled Table Expression.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Base(Rc<Table>)
IdGet(Rc<Table>, CExpPtr<i64>)
IxGet(Rc<Table>, Vec<CExpPtr<Value>>, usize)
Values(Vec<Vec<CExpPtr<Value>>>)
Implementations
Auto Trait Implementations
impl !RefUnwindSafe for CTableExpression
impl !Send for CTableExpression
impl !Sync for CTableExpression
impl Unpin for CTableExpression
impl !UnwindSafe for CTableExpression
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more