Enum cassowary::WeightedRelation [] [src]

pub enum WeightedRelation {
    EQ(f64),
    LE(f64),
    GE(f64),
}

This is part of the syntactic sugar used for specifying constraints. This enum should be used as part of a constraint expression. See the module documentation for more information.

Variants

EQ(f64)

==

LE(f64)

<=

GE(f64)

>=