Enum cassowary::AddConstraintError 
                   
                       [−]
                   
               [src]
pub enum AddConstraintError {
    DuplicateConstraint,
    UnsatisfiableConstraint,
    InternalSolverError(&'static str),
}The possible error conditions that Solver::add_constraint can fail with.
Variants
DuplicateConstraintThe constraint specified has already been added to the solver.
UnsatisfiableConstraintThe constraint is required, but it is unsatisfiable in conjunction with the existing constraints.
InternalSolverError(&'static str)The solver entered an invalid state. If this occurs please report the issue. This variant specifies additional details as a string.
Trait Implementations
impl Debug for AddConstraintError[src] 
impl Debug for AddConstraintErrorfn fmt(&self, __arg_0: &mut Formatter) -> Result[src] 
fn fmt(&self, __arg_0: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Copy for AddConstraintError[src] 
impl Copy for AddConstraintErrorimpl Clone for AddConstraintError[src] 
impl Clone for AddConstraintErrorfn clone(&self) -> AddConstraintError[src] 
fn clone(&self) -> AddConstraintErrorReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src] 
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
Auto Trait Implementations
impl Send for AddConstraintError
impl Send for AddConstraintErrorimpl Sync for AddConstraintError
impl Sync for AddConstraintError