pub enum ConflictType {
DirectValueConflict,
AllDifferentDomainTooSmall,
EmptyIntersection,
}Variants§
DirectValueConflict
Multiple equality constraints on same variable with different values
AllDifferentDomainTooSmall
AllDifferent constraint with insufficient domain size
EmptyIntersection
Constraint combination that creates empty intersection
Trait Implementations§
Source§impl Clone for ConflictType
impl Clone for ConflictType
Source§fn clone(&self) -> ConflictType
fn clone(&self) -> ConflictType
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for ConflictType
impl RefUnwindSafe for ConflictType
impl Send for ConflictType
impl Sync for ConflictType
impl Unpin for ConflictType
impl UnwindSafe for ConflictType
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