pub struct Clause {
pub lits: Vec<Lit>,
pub origin: Origin,
}Expand description
An Impossible clause: the listed literals cannot all hold simultaneously.
Fields§
§lits: Vec<Lit>The literals that cannot all hold at once (an Impossible([...])).
origin: OriginWhere it came from (for the report).
Trait Implementations§
impl Eq for Clause
impl StructuralPartialEq for Clause
Auto Trait Implementations§
impl Freeze for Clause
impl RefUnwindSafe for Clause
impl Send for Clause
impl Sync for Clause
impl Unpin for Clause
impl UnsafeUnpin for Clause
impl UnwindSafe for Clause
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