pub struct UnsatGenericConstraint<variable, previous, new, context> {
pub variable: variable,
pub previous: previous,
pub new: new,
pub context: context,
}Expand description
Impossible to satisfy generic constraints introduced by bounds.
Fields§
§variable: variableType variable.
previous: previousAlready equal to.
new: newNow additionally required to be equal to.
context: contextBound introduced by this node declaration.
Trait Implementations§
Auto Trait Implementations§
impl<variable, previous, new, context> Freeze for UnsatGenericConstraint<variable, previous, new, context>
impl<variable, previous, new, context> RefUnwindSafe for UnsatGenericConstraint<variable, previous, new, context>
impl<variable, previous, new, context> Send for UnsatGenericConstraint<variable, previous, new, context>
impl<variable, previous, new, context> Sync for UnsatGenericConstraint<variable, previous, new, context>
impl<variable, previous, new, context> Unpin for UnsatGenericConstraint<variable, previous, new, context>
impl<variable, previous, new, context> UnwindSafe for UnsatGenericConstraint<variable, previous, new, context>
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