fermah-common 0.1.2

Fermah common utilities and types.
Documentation
1
2
3
4
5
6
7
pub trait Price {
    fn price(&self) -> f64;
}

pub trait Fulfillable<T> {
    fn fulfills(&self, other: &T) -> bool;
}