Trait serde_json::value::Index [] [src]

pub trait Index: Sealed { }

A type that can be used to index into a serde_json::Value. See the get and get_mut methods of Value.

This trait is sealed and cannot be implemented for types outside of serde_json.

Implementations on Foreign Types

impl Index for usize
[src]

[src]

[src]

[src]

impl Index for str
[src]

[src]

[src]

[src]

impl Index for String
[src]

[src]

[src]

[src]

impl<'a, T: ?Sized> Index for &'a T where
    T: Index
[src]

[src]

[src]

[src]

Implementors