pub struct ArrRef<'a> {
pub index: usize,
pub store: &'a Jsons,
}
Expand description
Stand-in for &'a [Json]
Fields§
§index: usize
Reference into store.arrays
.
store: &'a Jsons
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for ArrRef<'a>
impl<'a> RefUnwindSafe for ArrRef<'a>
impl<'a> Send for ArrRef<'a>
impl<'a> Sync for ArrRef<'a>
impl<'a> Unpin for ArrRef<'a>
impl<'a> UnwindSafe for ArrRef<'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