Trait ai_kit::constraints::ConstraintValue [] [src]

pub trait ConstraintValue: BindingsValue {
    fn float(_: f64) -> Self;
    fn to_float(&self) -> Option<f64>;
}

Required Methods

Construct a ConstraintValue from a float

Attempt to convert this value to a float

Implementors