[−][src]Struct jsonc_parser::JsonArray
A JSON array.
Implementations
impl JsonArray
[src][−]
pub fn new(inner: Vec<JsonValue>) -> JsonArray
[src][−]
Creates a new JsonArray.
pub fn take_inner(self) -> Vec<JsonValue>
[src][−]
Drops the object returning the inner vector.
pub fn iter(&self) -> Iter<JsonValue>
[src][−]
Iterates over the array elements.
pub fn get(&self, index: usize) -> Option<&JsonValue>
[src][−]
Gets a value from the array by index.
pub fn len(&self) -> usize
[src][−]
Gets the number of elements.
Trait Implementations
impl Clone for JsonArray
[src][+]
impl Debug for JsonArray
[src][+]
impl From<Vec<JsonValue>> for JsonArray
[src][+]
impl IntoIterator for JsonArray
[src][+]
impl PartialEq<JsonArray> for JsonArray
[src][+]
impl StructuralPartialEq for JsonArray
[src]
Auto Trait Implementations
impl RefUnwindSafe for JsonArray
impl Send for JsonArray
impl Sync for JsonArray
impl Unpin for JsonArray
impl UnwindSafe for JsonArray
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<I> IntoIterator for I where
I: Iterator,
[src][+]
I: Iterator,
impl<T> ToOwned for T where
T: Clone,
[src][+]
T: Clone,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,