pub enum PrefixField<'tree> {
LazyField(Box<LazyField<'tree>>),
StrictField(Box<StrictField<'tree>>),
Type(Box<Type<'tree>>),
}Variants§
Trait Implementations§
Source§impl<'tree> Clone for PrefixField<'tree>
impl<'tree> Clone for PrefixField<'tree>
Source§fn clone(&self) -> PrefixField<'tree>
fn clone(&self) -> PrefixField<'tree>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'tree> Debug for PrefixField<'tree>
impl<'tree> Debug for PrefixField<'tree>
impl<'tree> Eq for PrefixField<'tree>
Source§impl<'tree> FromNode<'tree> for PrefixField<'tree>
impl<'tree> FromNode<'tree> for PrefixField<'tree>
Source§impl<'tree> PartialEq for PrefixField<'tree>
impl<'tree> PartialEq for PrefixField<'tree>
Source§impl Spanned for PrefixField<'_>
impl Spanned for PrefixField<'_>
impl<'tree> StructuralPartialEq for PrefixField<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for PrefixField<'tree>
impl<'tree> RefUnwindSafe for PrefixField<'tree>
impl<'tree> Send for PrefixField<'tree>
impl<'tree> Sync for PrefixField<'tree>
impl<'tree> Unpin for PrefixField<'tree>
impl<'tree> UnsafeUnpin for PrefixField<'tree>
impl<'tree> UnwindSafe for PrefixField<'tree>
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