#[non_exhaustive]pub enum SegmentKind {
Object,
Nested,
}Expand description
How one path level is stored — the only shapes a level can take.
Named SegmentKind to stay clear of the value-kind markers in
kind. Non-exhaustive: more container kinds may be added.
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.
Object
A group / to-one-join object: extends the dotted path but is not a
nested query boundary (it flattens into the enclosing scope).
Nested
A nested array: a real query/sort boundary that must be wrapped.
Trait Implementations§
Source§impl Clone for SegmentKind
impl Clone for SegmentKind
Source§fn clone(&self) -> SegmentKind
fn clone(&self) -> SegmentKind
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 SegmentKind
Source§impl Debug for SegmentKind
impl Debug for SegmentKind
impl Eq for SegmentKind
Source§impl PartialEq for SegmentKind
impl PartialEq for SegmentKind
Source§fn eq(&self, other: &SegmentKind) -> bool
fn eq(&self, other: &SegmentKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SegmentKind
Auto Trait Implementations§
impl Freeze for SegmentKind
impl RefUnwindSafe for SegmentKind
impl Send for SegmentKind
impl Sync for SegmentKind
impl Unpin for SegmentKind
impl UnsafeUnpin for SegmentKind
impl UnwindSafe for SegmentKind
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