[−][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, Global>> for JsonArray[src]
impl IntoIterator for JsonArray[src]
type Item = JsonValue
The type of the elements being iterated over.
type IntoIter = IntoIter<Self::Item>
Which kind of iterator are we turning this into?
pub fn into_iter(self) -> Self::IntoIter[src]
impl PartialEq<JsonArray> for JsonArray[src]
impl StructuralPartialEq for JsonArray[src]
Auto Trait Implementations
impl RefUnwindSafe for JsonArray[src]
impl Send for JsonArray[src]
impl Sync for JsonArray[src]
impl Unpin for JsonArray[src]
impl UnwindSafe for JsonArray[src]
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,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,