Files
smart-home-in-rust-with-hom…/home-assistant/src/light/service/turn_on.rs
2026-07-08 14:11:22 -04:00

37 lines
1.1 KiB
Rust

use std::str::FromStr;
use pyo3::IntoPyObject;
use crate::{
domain::Domain,
entity_id::EntityId,
object_id::ObjectId,
service::{service_domain::ServiceDomain, service_id::ServiceId, IntoServiceCall},
};
#[derive(Debug, Clone)]
pub struct TurnOn {
pub object_id: ObjectId,
}
#[derive(Debug, Clone, IntoPyObject)]
pub struct TurnOnServiceData {
entity_id: EntityId,
}
impl IntoServiceCall for TurnOn {
type ServiceData = TurnOnServiceData;
fn into_service_call(self) -> (ServiceDomain, ServiceId, Self::ServiceData) {
let service_domain = ServiceDomain::from_str("light").expect("statically written and known to be a valid slug; hoping to get compiler checks instead in the future");
let service_id = ServiceId::from_str("turn_on").expect("statically written and known to be a valid slug; hoping to get compiler checks instead in the future");
let Self { object_id } = self;
let entity_id = EntityId(Domain::Light, object_id);
let service_data = TurnOnServiceData { entity_id };
(service_domain, service_id, service_data)
}
}