pub trait PriceAdjustment<GlobalFarm> {
type Error;
type PriceAdjustment;
fn get(
global_farm: &GlobalFarm
) -> Result<Self::PriceAdjustment, Self::Error>;
}
Expand description
Implementers of this trait provide price_adjustment
for given GlobalFarm
.