pub enum JsonPathElem {
Dot {
key: String,
quoted: bool,
},
Bracket {
key: Expr,
},
}Expand description
An element of a JSON path.
Variants§
Dot
Accesses an object field using dot notation, e.g. obj:foo.bar.baz.
See https://docs.snowflake.com/en/user-guide/querying-semistructured#dot-notation.
Bracket
Accesses an object field or array element using bracket notation,
e.g. obj['foo'].
See https://docs.snowflake.com/en/user-guide/querying-semistructured#bracket-notation.
Trait Implementations§
Source§impl AsNodeKey for JsonPathElem
impl AsNodeKey for JsonPathElem
fn as_node_key(&self) -> NodeKey<'_>
Source§impl Clone for JsonPathElem
impl Clone for JsonPathElem
Source§fn clone(&self) -> JsonPathElem
fn clone(&self) -> JsonPathElem
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 JsonPathElem
impl Debug for JsonPathElem
Source§impl Hash for JsonPathElem
impl Hash for JsonPathElem
Source§impl Ord for JsonPathElem
impl Ord for JsonPathElem
Source§fn cmp(&self, other: &JsonPathElem) -> Ordering
fn cmp(&self, other: &JsonPathElem) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for JsonPathElem
impl PartialEq for JsonPathElem
Source§impl PartialOrd for JsonPathElem
impl PartialOrd for JsonPathElem
Source§impl Spanned for JsonPathElem
§partial span
Missing spans:
impl Spanned for JsonPathElem
§partial span
Missing spans:
Source§impl<'ast> Transformable<'ast> for JsonPathElem
impl<'ast> Transformable<'ast> for JsonPathElem
Source§impl Visitable for JsonPathElem
impl Visitable for JsonPathElem
Source§fn accept<'ast, V: Visitor<'ast>>(
&'ast self,
visitor: &mut V,
) -> ControlFlow<Break<V::Error>>
fn accept<'ast, V: Visitor<'ast>>( &'ast self, visitor: &mut V, ) -> ControlFlow<Break<V::Error>>
Accepts a borrowed
Visitor and traverses the AST starting at self invoking Visitor::enter and
Visitor::exit as nodes are entered and exiting respectively.Source§fn downcast_ref<Target: Visitable>(&self) -> Option<&Target>
fn downcast_ref<Target: Visitable>(&self) -> Option<&Target>
Tries to downcast
self as &Target.Source§fn downcast_mut<Target: Visitable>(&mut self) -> Option<&mut Target>
fn downcast_mut<Target: Visitable>(&mut self) -> Option<&mut Target>
Tries to downcast
self as &mut Target.impl Eq for JsonPathElem
impl StructuralPartialEq for JsonPathElem
Auto Trait Implementations§
impl Freeze for JsonPathElem
impl RefUnwindSafe for JsonPathElem
impl Send for JsonPathElem
impl Sync for JsonPathElem
impl Unpin for JsonPathElem
impl UnwindSafe for JsonPathElem
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