pub trait Utility<T> {
// Required method
fn utility(&self, obj: &T) -> f64;
}
Expand description
Implemented by objects that measure utility of an object.
pub trait Utility<T> {
// Required method
fn utility(&self, obj: &T) -> f64;
}
Implemented by objects that measure utility of an object.