pub enum RuntimeValueKind {
Atomic,
Structured {
queryable: bool,
},
}Expand description
RuntimeValueKind
Schema affordance classification for query planning and validation. Describes whether a field is planner-addressable and predicate-queryable.
Variants§
Atomic
Planner-addressable atomic value.
Structured
Structured value with known internal fields that the planner does not reason about as an addressable query target.
Implementations§
Source§impl RuntimeValueKind
impl RuntimeValueKind
pub const fn is_queryable(self) -> bool
Trait Implementations§
Source§impl Clone for RuntimeValueKind
impl Clone for RuntimeValueKind
Source§fn clone(&self) -> RuntimeValueKind
fn clone(&self) -> RuntimeValueKind
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 RuntimeValueKind
impl Debug for RuntimeValueKind
Source§impl PartialEq for RuntimeValueKind
impl PartialEq for RuntimeValueKind
impl Copy for RuntimeValueKind
impl Eq for RuntimeValueKind
impl StructuralPartialEq for RuntimeValueKind
Auto Trait Implementations§
impl Freeze for RuntimeValueKind
impl RefUnwindSafe for RuntimeValueKind
impl Send for RuntimeValueKind
impl Sync for RuntimeValueKind
impl Unpin for RuntimeValueKind
impl UnsafeUnpin for RuntimeValueKind
impl UnwindSafe for RuntimeValueKind
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