[][src]Trait json_utils::query::Path

pub trait Path<'a> {
    type Item: PathComponent<'a>;
    type Iter: Iterator<Item = Self::Item> + 'a;
    fn path(self) -> Self::Iter;
}

Associated Types

type Item: PathComponent<'a>

type Iter: Iterator<Item = Self::Item> + 'a

Loading content...

Required methods

fn path(self) -> Self::Iter

Loading content...

Implementations on Foreign Types

impl<'a> Path<'a> for &'a str[src]

type Item = &'a str

type Iter = StrSliceIter<'a>

impl<'a> Path<'a> for &'a String[src]

type Item = &'a str

type Iter = StrSliceIter<'a>

impl<'a> Path<'a> for &'a Vec<String>[src]

type Item = &'a String

type Iter = Iter<'a, String>

Loading content...

Implementors

Loading content...