pub enum FragmentRef<'a, T, B> {
Entry(&'a [IndexedObject<T, B>]),
Key,
Value(&'a [IndexedObject<T, B>]),
}
Expand description
List object fragment.
Variants§
Entry(&'a [IndexedObject<T, B>])
“@list” entry.
Key
“@list” entry key.
Value(&'a [IndexedObject<T, B>])
“@list” value.
Auto Trait Implementations§
impl<'a, T, B> Freeze for FragmentRef<'a, T, B>
impl<'a, T, B> RefUnwindSafe for FragmentRef<'a, T, B>where
T: RefUnwindSafe,
B: RefUnwindSafe,
impl<'a, T, B> Send for FragmentRef<'a, T, B>
impl<'a, T, B> Sync for FragmentRef<'a, T, B>
impl<'a, T, B> Unpin for FragmentRef<'a, T, B>
impl<'a, T, B> UnwindSafe for FragmentRef<'a, T, B>where
T: RefUnwindSafe,
B: RefUnwindSafe,
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