Files
rust-otus/smart-house-web/backend/src/house.rs

11 lines
170 B
Rust

struct PowerSocket {
power_rate: f32,
on: bool,
}
impl PowerSocket {
pub fn new(power_rate: f32, on: bool) -> Self {
Self { power_rate, on }
}
}