[][src]Trait json_peek::value::Indexable

pub trait Indexable<'a, I = usize> {
    type Output;
    fn index(&'a self, index: I) -> Self::Output;
}

Associated Types

type Output

Loading content...

Required methods

fn index(&'a self, index: I) -> Self::Output

Loading content...

Implementations on Foreign Types

impl<'a> Indexable<'a, usize> for Option<Value>[src]

type Output = Option<Value>

Loading content...

Implementors

impl<'a> Indexable<'a, usize> for Value[src]

type Output = Option<Value>

Loading content...