pub enum QuantifiedType<'tree> {
Context(Box<Context<'tree>>),
Forall(Box<Forall<'tree>>),
ForallRequired(Box<ForallRequired<'tree>>),
Function(Box<Function<'tree>>),
ImplicitParameter(Box<ImplicitParameter<'tree>>),
LinearFunction(Box<LinearFunction<'tree>>),
Type(Box<Type<'tree>>),
}Variants§
Context(Box<Context<'tree>>)
Forall(Box<Forall<'tree>>)
ForallRequired(Box<ForallRequired<'tree>>)
Function(Box<Function<'tree>>)
ImplicitParameter(Box<ImplicitParameter<'tree>>)
LinearFunction(Box<LinearFunction<'tree>>)
Type(Box<Type<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for QuantifiedType<'tree>
impl<'tree> Clone for QuantifiedType<'tree>
Source§fn clone(&self) -> QuantifiedType<'tree>
fn clone(&self) -> QuantifiedType<'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 QuantifiedType<'tree>
impl<'tree> Debug for QuantifiedType<'tree>
Source§impl<'tree> FromNode<'tree> for QuantifiedType<'tree>
impl<'tree> FromNode<'tree> for QuantifiedType<'tree>
Source§impl<'tree> PartialEq for QuantifiedType<'tree>
impl<'tree> PartialEq for QuantifiedType<'tree>
Source§impl Spanned for QuantifiedType<'_>
impl Spanned for QuantifiedType<'_>
impl<'tree> Eq for QuantifiedType<'tree>
impl<'tree> StructuralPartialEq for QuantifiedType<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for QuantifiedType<'tree>
impl<'tree> RefUnwindSafe for QuantifiedType<'tree>
impl<'tree> Send for QuantifiedType<'tree>
impl<'tree> Sync for QuantifiedType<'tree>
impl<'tree> Unpin for QuantifiedType<'tree>
impl<'tree> UnsafeUnpin for QuantifiedType<'tree>
impl<'tree> UnwindSafe for QuantifiedType<'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