pub struct VersionConstraintSolver { /* private fields */ }Expand description
Version constraint solver
Implementations§
Source§impl VersionConstraintSolver
impl VersionConstraintSolver
pub fn new() -> Self
pub fn solve_constraints( &self, constraints: Vec<VersionConstraint>, ) -> SklResult<HashMap<String, String>>
pub fn is_version_compatible(&self, version: &str, constraint: &str) -> bool
Trait Implementations§
Source§impl Debug for VersionConstraintSolver
impl Debug for VersionConstraintSolver
Auto Trait Implementations§
impl Freeze for VersionConstraintSolver
impl !RefUnwindSafe for VersionConstraintSolver
impl Send for VersionConstraintSolver
impl Sync for VersionConstraintSolver
impl Unpin for VersionConstraintSolver
impl !UnwindSafe for VersionConstraintSolver
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