pub enum RuntimeValueKind {
Atomic,
Structured {
queryable: bool,
},
}Expand description
Schema affordance classification for query planning and validation.
Variants§
Atomic
Planner-addressable atomic value.
Structured
Structured value whose internal fields are not planner-addressable.
Implementations§
Source§impl RuntimeValueKind
impl RuntimeValueKind
Sourcepub const fn is_queryable(self) -> bool
pub const fn is_queryable(self) -> bool
Return whether this runtime value kind may be used in predicates.
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 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for RuntimeValueKind
Source§impl Debug for RuntimeValueKind
impl Debug for RuntimeValueKind
impl Eq for RuntimeValueKind
Source§impl PartialEq for RuntimeValueKind
impl PartialEq 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