pub struct Context<'ctx> {
pub quantified_vars: Vec<BoundVar>,
pub free_vars: Vec<BoundVar>,
pub assumptions: Vec<Assumption>,
pub var_map: HashMap<VarId, BoundVar>,
pub typesols: &'ctx HashMap<RuleId, RuleSemantics>,
}
Fields§
§quantified_vars: Vec<BoundVar>
§free_vars: Vec<BoundVar>
§assumptions: Vec<Assumption>
§var_map: HashMap<VarId, BoundVar>
§typesols: &'ctx HashMap<RuleId, RuleSemantics>
Implementations§
Auto Trait Implementations§
impl<'ctx> Freeze for Context<'ctx>
impl<'ctx> RefUnwindSafe for Context<'ctx>
impl<'ctx> Send for Context<'ctx>
impl<'ctx> Sync for Context<'ctx>
impl<'ctx> Unpin for Context<'ctx>
impl<'ctx> UnwindSafe for Context<'ctx>
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> 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