Enum json_ld::object::list::FragmentRef   
source · pub enum FragmentRef<'a, T, B> {
    Entry(&'a [Indexed<Object<T, B>>]),
    Key,
    Value(&'a [Indexed<Object<T, B>>]),
}Expand description
List object fragment.
Variants§
Entry(&'a [Indexed<Object<T, B>>])
“@list” entry.
Key
“@list” entry key.
Value(&'a [Indexed<Object<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