Trait simd_json::value::Array

source ·
pub trait Array: Index<usize> + Sync + Send + Clone {
    type Element: Value;

    // Required methods
    fn get<I>(
        &self,
        i: I
    ) -> Option<&<I as SliceIndex<[Self::Element]>>::Output>
       where I: SliceIndex<[Self::Element]>;
    fn get_mut(&mut self, i: usize) -> Option<&mut Self::Element>;
    fn pop(&mut self) -> Option<Self::Element>;
    fn push(&mut self, e: Self::Element);
    fn iter<'i>(
        &'i self
    ) -> Box<dyn Iterator<Item = &'i Self::Element> + 'i, Global>;
    fn len(&self) -> usize;

    // Provided method
    fn is_empty(&self) -> bool { ... }
}
Expand description

Functions guaranteed for any array object

Required Associated Types§

source

type Element: Value

Elements of the array

Required Methods§

source

fn get<I>(&self, i: I) -> Option<&<I as SliceIndex<[Self::Element]>>::Output>where I: SliceIndex<[Self::Element]>,

Gets a ref to a value based on n index, returns None if the current Value isn’t an Array or doesn’t contain the index it was asked for.

source

fn get_mut(&mut self, i: usize) -> Option<&mut Self::Element>

Gets a ref to a value based on n index, returns None if the current Value isn’t an Array or doesn’t contain the index it was asked for.

source

fn pop(&mut self) -> Option<Self::Element>

Returns the last element of the array or None

source

fn push(&mut self, e: Self::Element)

Appends e to the end of the Array

source

fn iter<'i>( &'i self ) -> Box<dyn Iterator<Item = &'i Self::Element> + 'i, Global>

Iterates over the values paris

source

fn len(&self) -> usize

Number of key/value pairs

Provided Methods§

source

fn is_empty(&self) -> bool

Returns if the array is empty

Implementations on Foreign Types§

source§

impl<T> Array for Vec<T, Global>where T: Value + Sync + Send + Clone,

§

type Element = T

source§

fn get<I>(&self, i: I) -> Option<&<I as SliceIndex<[T]>>::Output>where I: SliceIndex<[T]>,

source§

fn get_mut(&mut self, i: usize) -> Option<&mut T>

source§

fn pop(&mut self) -> Option<T>

source§

fn push(&mut self, e: T)

source§

fn iter<'i>(&'i self) -> Box<dyn Iterator<Item = &'i T> + 'i, Global>

source§

fn len(&self) -> usize

Implementors§