[][src]Trait json_peek::value::Keyable

pub trait Keyable<'a, K> {
    type Output;
    fn get(&'a self, key: K) -> Self::Output;
}

Associated Types

type Output

Loading content...

Required methods

fn get(&'a self, key: K) -> Self::Output

Loading content...

Implementations on Foreign Types

impl<'a, K> Keyable<'a, K> for Option<Value> where
    K: Into<Literal>, 
[src]

type Output = Option<Value>

Loading content...

Implementors

impl<'a, K> Keyable<'a, K> for Value where
    K: Into<Literal>, 
[src]

type Output = Option<Value>

Loading content...