Enum rplex::ConstraintType [−][src]
pub enum ConstraintType {
LessThanEq,
Eq,
GreaterThanEq,
Ranged,
}
Expand description
Kind of (in)equality of a Constraint.
Note that the direction of the inequality is opposite what one
might expect from the con!
macro. This is because the right- and
left-hand sides are flipped in the macro.
Variants
LessThanEq
Eq
GreaterThanEq
Ranged
Ranged
is currently unimplemented.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for ConstraintType
impl Send for ConstraintType
impl Sync for ConstraintType
impl Unpin for ConstraintType
impl UnwindSafe for ConstraintType
Blanket Implementations
Mutably borrows from an owned value. Read more