pub enum TypeExpr<I, A> {
U(A, A),
I(A, A),
ArrayN(A, Box<TypeExpr<I, A>>),
ArrayV(Box<TypeExpr<I, A>>),
App(NodeApp<I, A>),
}Variants§
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<I, A> Freeze for TypeExpr<I, A>
impl<I, A> RefUnwindSafe for TypeExpr<I, A>where
A: RefUnwindSafe,
I: RefUnwindSafe,
impl<I, A> Send for TypeExpr<I, A>
impl<I, A> Sync for TypeExpr<I, A>
impl<I, A> Unpin for TypeExpr<I, A>
impl<I, A> UnsafeUnpin for TypeExpr<I, A>where
A: UnsafeUnpin,
I: UnsafeUnpin,
impl<I, A> UnwindSafe for TypeExpr<I, A>where
A: UnwindSafe,
I: UnwindSafe,
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