pub enum Term<'a> {
Atom(&'a Atom<'a>),
NegAtom(&'a Atom<'a>),
Eq(&'a BaseTerm<'a>, &'a BaseTerm<'a>),
Ineq(&'a BaseTerm<'a>, &'a BaseTerm<'a>),
}
Variants§
Atom(&'a Atom<'a>)
NegAtom(&'a Atom<'a>)
Eq(&'a BaseTerm<'a>, &'a BaseTerm<'a>)
Ineq(&'a BaseTerm<'a>, &'a BaseTerm<'a>)
Implementations§
Trait Implementations§
impl<'a> Copy for Term<'a>
impl<'a> Eq for Term<'a>
impl<'a> StructuralPartialEq for Term<'a>
Auto Trait Implementations§
impl<'a> Freeze for Term<'a>
impl<'a> RefUnwindSafe for Term<'a>
impl<'a> Send for Term<'a>
impl<'a> Sync for Term<'a>
impl<'a> Unpin for Term<'a>
impl<'a> UnwindSafe for Term<'a>
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