#[non_exhaustive]pub enum PredicateExpr {
Named(Arc<str>),
Rows(Arc<[usize]>),
}Expand description
Portable predicate over units/rows.
Self::Rows is evaluated directly; Self::Named resolves through
super::PopulationRegistry.
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.
Named(Arc<str>)
Registry-named predicate resolved by callers.
Rows(Arc<[usize]>)
Explicit row indices into the bound tabular view.
Implementations§
Source§impl PredicateExpr
impl PredicateExpr
Trait Implementations§
Source§impl Clone for PredicateExpr
impl Clone for PredicateExpr
Source§fn clone(&self) -> PredicateExpr
fn clone(&self) -> PredicateExpr
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PredicateExpr
impl Debug for PredicateExpr
impl Eq for PredicateExpr
Source§impl Hash for PredicateExpr
impl Hash for PredicateExpr
Source§impl PartialEq for PredicateExpr
impl PartialEq for PredicateExpr
impl StructuralPartialEq for PredicateExpr
Auto Trait Implementations§
impl Freeze for PredicateExpr
impl RefUnwindSafe for PredicateExpr
impl Send for PredicateExpr
impl Sync for PredicateExpr
impl Unpin for PredicateExpr
impl UnsafeUnpin for PredicateExpr
impl UnwindSafe for PredicateExpr
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