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