pub struct Term<F> { /* private fields */ }Expand description
A term.
Subterms are reference counter using [std::rc::Arc].
Implementations§
Trait Implementations§
Source§impl<F: Ord> Ord for Term<F>
impl<F: Ord> Ord for Term<F>
Source§impl<F: Ord> PartialOrd for Term<F>
impl<F: Ord> PartialOrd for Term<F>
Source§impl<F, X> PatternLike<F, X> for Term<F>
impl<F, X> PatternLike<F, X> for Term<F>
fn kind(&self) -> PatternLikeKind<'_, F, X, Self>
impl<F: PartialEq + Eq> Eq for Term<F>
Auto Trait Implementations§
impl<F> !Freeze for Term<F>
impl<F> RefUnwindSafe for Term<F>where
F: RefUnwindSafe,
impl<F> Send for Term<F>
impl<F> Sync for Term<F>
impl<F> Unpin for Term<F>where
F: Unpin,
impl<F> UnwindSafe for Term<F>where
F: UnwindSafe + RefUnwindSafe,
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