pub trait JsonMaybeArray: JsonValueWrap where
    Self: Sized
{ fn get_index(&self, index: usize) -> Option<&Self>; fn mut_index(&mut self, index: usize) -> Option<&mut Self>; }
Expand description

Treat json value as array and get data from it according to index

Required Methods

Implementations on Foreign Types

Implementors