Enum json_ld_core::object::list::FragmentRef
source · pub enum FragmentRef<'a, T, B, M> {
Entry(EntryRef<'a, T, B, M>),
Key(&'a M),
Value(EntryValueRef<'a, T, B, M>),
}
Expand description
List object fragment.
Variants
Entry(EntryRef<'a, T, B, M>)
“@list” entry.
Key(&'a M)
“@list” entry key.
Value(EntryValueRef<'a, T, B, M>)
“@list” value.
Auto Trait Implementations
impl<'a, T, B, M> RefUnwindSafe for FragmentRef<'a, T, B, M>where
B: RefUnwindSafe,
M: RefUnwindSafe,
T: RefUnwindSafe,
impl<'a, T, B, M> Send for FragmentRef<'a, T, B, M>where
B: Sync,
M: Sync,
T: Sync,
impl<'a, T, B, M> Sync for FragmentRef<'a, T, B, M>where
B: Sync,
M: Sync,
T: Sync,
impl<'a, T, B, M> Unpin for FragmentRef<'a, T, B, M>
impl<'a, T, B, M> UnwindSafe for FragmentRef<'a, T, B, M>where
B: RefUnwindSafe,
M: RefUnwindSafe,
T: RefUnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more