pub enum WeigthConstraintType {
ImplicationLeft = -1,
ImplicationRight = 1,
Equivalence = 0,
}Expand description
Enumeration of weight_constraint_types.
Variants§
ImplicationLeft = -1
The weight constraint implies the literal
ImplicationRight = 1
The literal implies the weight constraint
Equivalence = 0
The weight constraint is equivalent to the literal
Trait Implementations§
Source§impl Clone for WeigthConstraintType
impl Clone for WeigthConstraintType
Source§fn clone(&self) -> WeigthConstraintType
fn clone(&self) -> WeigthConstraintType
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 WeigthConstraintType
impl Debug for WeigthConstraintType
impl Copy for WeigthConstraintType
Auto Trait Implementations§
impl Freeze for WeigthConstraintType
impl RefUnwindSafe for WeigthConstraintType
impl Send for WeigthConstraintType
impl Sync for WeigthConstraintType
impl Unpin for WeigthConstraintType
impl UnwindSafe for WeigthConstraintType
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