pub enum FieldType<'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§
impl<'tree> Eq for FieldType<'tree>
impl<'tree> StructuralPartialEq for FieldType<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for FieldType<'tree>
impl<'tree> RefUnwindSafe for FieldType<'tree>
impl<'tree> Send for FieldType<'tree>
impl<'tree> Sync for FieldType<'tree>
impl<'tree> Unpin for FieldType<'tree>
impl<'tree> UnsafeUnpin for FieldType<'tree>
impl<'tree> UnwindSafe for FieldType<'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