pub enum Atom<C> {
Const(C),
Var(usize),
Type,
}Expand description
Term without subterms.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl<C> Freeze for Atom<C>where
C: Freeze,
impl<C> RefUnwindSafe for Atom<C>where
C: RefUnwindSafe,
impl<C> Send for Atom<C>where
C: Send,
impl<C> Sync for Atom<C>where
C: Sync,
impl<C> Unpin for Atom<C>where
C: Unpin,
impl<C> UnsafeUnpin for Atom<C>where
C: UnsafeUnpin,
impl<C> UnwindSafe for Atom<C>where
C: 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