pub enum FieldParameter<'tree> {
LazyField(Box<LazyField<'tree>>),
QuantifiedType(Box<QuantifiedType<'tree>>),
StrictField(Box<StrictField<'tree>>),
}Variants§
LazyField(Box<LazyField<'tree>>)
QuantifiedType(Box<QuantifiedType<'tree>>)
StrictField(Box<StrictField<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for FieldParameter<'tree>
impl<'tree> Clone for FieldParameter<'tree>
Source§fn clone(&self) -> FieldParameter<'tree>
fn clone(&self) -> FieldParameter<'tree>
Returns a duplicate of the value. Read more
1.0.0 · 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 FieldParameter<'tree>
impl<'tree> Debug for FieldParameter<'tree>
Source§impl<'tree> FromNode<'tree> for FieldParameter<'tree>
impl<'tree> FromNode<'tree> for FieldParameter<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for FieldParameter<'tree>
impl<'tree> RefUnwindSafe for FieldParameter<'tree>
impl<'tree> Send for FieldParameter<'tree>
impl<'tree> Sync for FieldParameter<'tree>
impl<'tree> Unpin for FieldParameter<'tree>
impl<'tree> UnsafeUnpin for FieldParameter<'tree>
impl<'tree> UnwindSafe for FieldParameter<'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