1use thiserror::Error;
6
7#[derive(Error, Debug)]
8pub enum BatteryClientError {
9 #[error("Couldn't connect to `BatteryManager`: {:?}", source)]
11 ManagerUnavailable { source: anyhow::Error },
12 #[error("Battery Watcher stream error: {:?}", source)]
14 Watcher { source: Box<dyn std::error::Error + Send + Sync> },
15 #[error("Invalid FIDL Battery Info: {:?}", source)]
17 InvalidBatteryInfo { source: Box<dyn std::error::Error + Send + Sync> },
18 #[error("FIDL Error occurred: {:?}", source)]
20 Fidl { source: fidl::Error },
21}
22
23impl BatteryClientError {
24 pub fn watcher<E>(e: E) -> Self
25 where
26 E: Into<Box<dyn std::error::Error + Send + Sync>>,
27 {
28 Self::Watcher { source: e.into() }
29 }
30
31 pub fn info<E>(e: E) -> Self
32 where
33 E: Into<Box<dyn std::error::Error + Send + Sync>>,
34 {
35 Self::InvalidBatteryInfo { source: e.into() }
36 }
37
38 pub fn manager_unavailable(e: anyhow::Error) -> Self {
39 Self::ManagerUnavailable { source: e }
40 }
41}
42
43impl From<fidl::Error> for BatteryClientError {
44 fn from(source: fidl::Error) -> Self {
45 Self::Fidl { source }
46 }
47}