pub struct ConstraintSet {
pub root_scope: *mut Scope,
pub constraints: Vec<ConstraintPtr>,
pub free_types: TypeIds,
pub scope_to_function: DenseHashMap<*mut Scope, TypeId>,
pub errors: Vec<TypeError>,
}Fields§
§root_scope: *mut Scope§constraints: Vec<ConstraintPtr>§free_types: TypeIds§scope_to_function: DenseHashMap<*mut Scope, TypeId>§errors: Vec<TypeError>Trait Implementations§
Auto Trait Implementations§
impl !Send for ConstraintSet
impl !Sync for ConstraintSet
impl Freeze for ConstraintSet
impl RefUnwindSafe for ConstraintSet
impl Unpin for ConstraintSet
impl UnsafeUnpin for ConstraintSet
impl UnwindSafe for ConstraintSet
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