Struct jsonc_parser::ast::Array
source · pub struct Array<'a> {
pub range: Range,
pub elements: Vec<Value<'a>>,
}
Expand description
Represents an array that may contain elements (ex. []
, [5, 6]
).
Fields§
§range: Range
§elements: Vec<Value<'a>>
Trait Implementations§
source§impl<'a> PartialEq<Array<'a>> for Array<'a>
impl<'a> PartialEq<Array<'a>> for Array<'a>
impl<'a> StructuralPartialEq for Array<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for Array<'a>
impl<'a> Send for Array<'a>
impl<'a> Sync for Array<'a>
impl<'a> Unpin for Array<'a>
impl<'a> UnwindSafe for Array<'a>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more