pub enum FieldValueKind {
Atomic,
Structured {
queryable: bool,
},
}Expand description
FieldValueKind
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 FieldValueKind
impl FieldValueKind
pub const fn is_queryable(self) -> bool
Trait Implementations§
Source§impl Clone for FieldValueKind
impl Clone for FieldValueKind
Source§fn clone(&self) -> FieldValueKind
fn clone(&self) -> FieldValueKind
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 FieldValueKind
impl Debug for FieldValueKind
Source§impl PartialEq for FieldValueKind
impl PartialEq for FieldValueKind
impl Copy for FieldValueKind
impl Eq for FieldValueKind
impl StructuralPartialEq for FieldValueKind
Auto Trait Implementations§
impl Freeze for FieldValueKind
impl RefUnwindSafe for FieldValueKind
impl Send for FieldValueKind
impl Sync for FieldValueKind
impl Unpin for FieldValueKind
impl UnsafeUnpin for FieldValueKind
impl UnwindSafe for FieldValueKind
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