pub enum FragmentRef<'a> {
ContextArray(&'a [ContextEntry]),
Context(&'a ContextEntry),
DefinitionFragment(FragmentRef<'a>),
}
Expand description
Context value fragment.
Variants§
ContextArray(&'a [ContextEntry])
Context array.
Context(&'a ContextEntry)
Context.
DefinitionFragment(FragmentRef<'a>)
Context definition 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