pub struct Let<V: Binder<Var: Ord>, M> {
pub vars: BTreeMap<V::Var, GTerm<V, M>>,
pub body: GTerm<V, M>,
}
Fields§
§vars: BTreeMap<V::Var, GTerm<V, M>>
§body: GTerm<V, M>
Trait Implementations§
Source§impl<V: Ord + Binder<Var: Ord>, M: Ord> Ord for Let<V, M>
impl<V: Ord + Binder<Var: Ord>, M: Ord> Ord for Let<V, M>
Source§impl<V: PartialOrd + Binder<Var: Ord>, M: PartialOrd> PartialOrd for Let<V, M>where
V::Var: PartialOrd,
impl<V: PartialOrd + Binder<Var: Ord>, M: PartialOrd> PartialOrd for Let<V, M>where
V::Var: PartialOrd,
impl<V: Eq + Binder<Var: Ord>, M: Eq> Eq for Let<V, M>
impl<V: Binder<Var: Ord>, M> StructuralPartialEq for Let<V, M>
Auto Trait Implementations§
impl<V, M> Freeze for Let<V, M>
impl<V, M> RefUnwindSafe for Let<V, M>
impl<V, M> Send for Let<V, M>
impl<V, M> Sync for Let<V, M>
impl<V, M> Unpin for Let<V, M>
impl<V, M> UnwindSafe for Let<V, M>where
<V as Binder>::Var: RefUnwindSafe + UnwindSafe,
M: UnwindSafe + RefUnwindSafe,
V: 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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