pub enum DependencyConstraints {
LessThan,
MoreThan,
Equals,
MoreOrEqualsThan,
LessOrEqualsThan,
}
Variants§
Trait Implementations§
Source§impl Clone for DependencyConstraints
impl Clone for DependencyConstraints
Source§fn clone(&self) -> DependencyConstraints
fn clone(&self) -> DependencyConstraints
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 moreSource§impl Debug for DependencyConstraints
impl Debug for DependencyConstraints
Source§impl Display for DependencyConstraints
impl Display for DependencyConstraints
Source§impl FromStr for DependencyConstraints
impl FromStr for DependencyConstraints
Source§impl PartialEq for DependencyConstraints
impl PartialEq for DependencyConstraints
impl Copy for DependencyConstraints
impl Eq for DependencyConstraints
impl StructuralPartialEq for DependencyConstraints
Auto Trait Implementations§
impl Freeze for DependencyConstraints
impl RefUnwindSafe for DependencyConstraints
impl Send for DependencyConstraints
impl Sync for DependencyConstraints
impl Unpin for DependencyConstraints
impl UnwindSafe for DependencyConstraints
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.