pub struct TypeSafeSolverSelector<SolverType, ProblemType> { /* private fields */ }Expand description
Type-safe solver selector
Implementations§
Source§impl<SolverType, ProblemType> TypeSafeSolverSelector<SolverType, ProblemType>where
SolverType: SolverConstraint<ProblemType>,
impl<SolverType, ProblemType> TypeSafeSolverSelector<SolverType, ProblemType>where
SolverType: SolverConstraint<ProblemType>,
Sourcepub fn recommendations(&self) -> &'static str
pub fn recommendations(&self) -> &'static str
Get solver recommendations
Trait Implementations§
Source§impl<SolverType, ProblemType> Default for TypeSafeSolverSelector<SolverType, ProblemType>where
SolverType: SolverConstraint<ProblemType>,
impl<SolverType, ProblemType> Default for TypeSafeSolverSelector<SolverType, ProblemType>where
SolverType: SolverConstraint<ProblemType>,
Auto Trait Implementations§
impl<SolverType, ProblemType> Freeze for TypeSafeSolverSelector<SolverType, ProblemType>
impl<SolverType, ProblemType> RefUnwindSafe for TypeSafeSolverSelector<SolverType, ProblemType>where
SolverType: RefUnwindSafe,
ProblemType: RefUnwindSafe,
impl<SolverType, ProblemType> Send for TypeSafeSolverSelector<SolverType, ProblemType>
impl<SolverType, ProblemType> Sync for TypeSafeSolverSelector<SolverType, ProblemType>
impl<SolverType, ProblemType> Unpin for TypeSafeSolverSelector<SolverType, ProblemType>
impl<SolverType, ProblemType> UnwindSafe for TypeSafeSolverSelector<SolverType, ProblemType>where
SolverType: UnwindSafe,
ProblemType: 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> 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