pub struct Part<L: Literal> { /* private fields */ }Expand description
A step of the trail, representing a single literal assignment.
Each Part stores the assigned literal, the decision level at which
it was assigned, and the reason for the assignment.
Trait Implementations§
impl<L: Eq + Literal> Eq for Part<L>
impl<L: Literal> StructuralPartialEq for Part<L>
Auto Trait Implementations§
impl<L> Freeze for Part<L>where
L: Freeze,
impl<L> RefUnwindSafe for Part<L>where
L: RefUnwindSafe,
impl<L> Send for Part<L>
impl<L> Sync for Part<L>
impl<L> Unpin for Part<L>where
L: Unpin,
impl<L> UnwindSafe for Part<L>where
L: UnwindSafe,
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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