pub enum FragmentRef<'a> {
Entry(EntryRef<'a>),
Key(EntryKey),
Value(EntryValueRef<'a>),
ContainerFragment(&'a ContainerKind),
}
Expand description
Term definition fragment.
Variants§
Entry(EntryRef<'a>)
Term definition entry.
Key(EntryKey)
Term definition entry key.
Value(EntryValueRef<'a>)
Term definition entry value.
ContainerFragment(&'a ContainerKind)
Container value fragment.
Implementations§
Auto Trait Implementations§
impl<'a> Freeze for FragmentRef<'a>
impl<'a> RefUnwindSafe for FragmentRef<'a>
impl<'a> Send for FragmentRef<'a>
impl<'a> Sync for FragmentRef<'a>
impl<'a> Unpin for FragmentRef<'a>
impl<'a> UnwindSafe for FragmentRef<'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