price_checker/src/price_result.rs

6 lines
118 B
Rust
Raw Normal View History

2020-05-11 19:21:57 +00:00
#[derive(PartialEq, Clone, Debug)]
pub struct PriceResult {
pub name: String,
pub product: String,
pub price: f64
}