pub struct JsonArrayEntries<V: Debug + Clone + AsRef<str> + GetBytes> {
pub entries: Vec<FlatJsonValue<V>>,
pub index: usize,
}
Fields§
§entries: Vec<FlatJsonValue<V>>
§index: usize
Implementations§
Source§impl<V: Debug + Clone + AsRef<str> + GetBytes> JsonArrayEntries<V>
impl<V: Debug + Clone + AsRef<str> + GetBytes> JsonArrayEntries<V>
pub fn entries(&self) -> &Vec<FlatJsonValue<V>>
pub fn index(&self) -> usize
pub fn find_node_at(&self, pointer: &str) -> Option<&FlatJsonValue<V>>
Trait Implementations§
Source§impl<V: Clone + Debug + Clone + AsRef<str> + GetBytes> Clone for JsonArrayEntries<V>
impl<V: Clone + Debug + Clone + AsRef<str> + GetBytes> Clone for JsonArrayEntries<V>
Source§fn clone(&self) -> JsonArrayEntries<V>
fn clone(&self) -> JsonArrayEntries<V>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl<V> Freeze for JsonArrayEntries<V>
impl<V> RefUnwindSafe for JsonArrayEntries<V>where
V: RefUnwindSafe,
impl<V> Send for JsonArrayEntries<V>where
V: Send,
impl<V> Sync for JsonArrayEntries<V>where
V: Sync,
impl<V> Unpin for JsonArrayEntries<V>where
V: Unpin,
impl<V> UnwindSafe for JsonArrayEntries<V>where
V: UnwindSafe,
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