Struct jsonc_parser::JsonArray[][src]

pub struct JsonArray<'a>(_);

A JSON array.

Implementations

impl<'a> JsonArray<'a>[src]

pub fn new(inner: Vec<JsonValue<'a>>) -> JsonArray<'a>[src]

Creates a new JsonArray.

pub fn take_inner(self) -> Vec<JsonValue<'a>>[src]

Drops the object returning the inner vector.

pub fn iter(&self) -> Iter<'_, JsonValue<'a>>[src]

Iterates over the array elements.

pub fn get(&self, index: usize) -> Option<&JsonValue<'a>>[src]

Gets a value from the array by index.

pub fn len(&self) -> usize[src]

Gets the number of elements.

Trait Implementations

impl<'a> Clone for JsonArray<'a>[src]

impl<'a> Debug for JsonArray<'a>[src]

impl<'a> From<Vec<JsonValue<'a>, Global>> for JsonArray<'a>[src]

impl<'a> IntoIterator for JsonArray<'a>[src]

type Item = JsonValue<'a>

The type of the elements being iterated over.

type IntoIter = IntoIter<Self::Item>

Which kind of iterator are we turning this into?

impl<'a> PartialEq<JsonArray<'a>> for JsonArray<'a>[src]

impl<'a> StructuralPartialEq for JsonArray<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for JsonArray<'a>

impl<'a> Send for JsonArray<'a>

impl<'a> Sync for JsonArray<'a>

impl<'a> Unpin for JsonArray<'a>

impl<'a> UnwindSafe for JsonArray<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.