Enum cassowary::RemoveEditVariableError [] [src]

pub enum RemoveEditVariableError {
    UnknownEditVariable,
    InternalSolverError(&'static str),
}

The possible error conditions that Solver::remove_edit_variable can fail with.

Variants

UnknownEditVariable

The specified variable was not an edit variable in the solver, so cannot be removed.

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 Clone for RemoveEditVariableError
[src]

fn clone(&self) -> RemoveEditVariableError

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Copy for RemoveEditVariableError
[src]

impl Debug for RemoveEditVariableError
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.