pub struct ValuationPair<'st>(pub &'st Term<'st>, pub &'st Term<'st>);
Expand description
(<term> <term>)
Tuple Fields§
§0: &'st Term<'st>
§1: &'st Term<'st>
Implementations§
Source§impl<'st> ValuationPair<'st>
impl<'st> ValuationPair<'st>
Trait Implementations§
Source§impl<'st> Clone for ValuationPair<'st>
impl<'st> Clone for ValuationPair<'st>
Source§fn clone(&self) -> ValuationPair<'st>
fn clone(&self) -> ValuationPair<'st>
Returns a copy 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<'st> Debug for ValuationPair<'st>
impl<'st> Debug for ValuationPair<'st>
Source§impl Display for ValuationPair<'_>
impl Display for ValuationPair<'_>
Source§impl<'st> Hash for ValuationPair<'st>
impl<'st> Hash for ValuationPair<'st>
Source§impl<'st> PartialEq for ValuationPair<'st>
impl<'st> PartialEq for ValuationPair<'st>
impl<'st> Copy for ValuationPair<'st>
impl<'st> Eq for ValuationPair<'st>
impl<'st> StructuralPartialEq for ValuationPair<'st>
Auto Trait Implementations§
impl<'st> Freeze for ValuationPair<'st>
impl<'st> RefUnwindSafe for ValuationPair<'st>
impl<'st> Send for ValuationPair<'st>
impl<'st> Sync for ValuationPair<'st>
impl<'st> Unpin for ValuationPair<'st>
impl<'st> UnwindSafe for ValuationPair<'st>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more