sl4f_lib/diagnostics/
types.rs1use serde::{Deserialize, Serialize};
6
7#[derive(Debug, PartialEq)]
9pub enum DiagnosticsMethod {
10 SnapshotInspect,
14}
15
16#[derive(Serialize, Deserialize)]
17pub struct SnapshotInspectArgs {
18 pub selectors: Vec<String>,
19 pub service_name: String,
20}
21
22impl std::str::FromStr for DiagnosticsMethod {
23 type Err = anyhow::Error;
24
25 fn from_str(method: &str) -> Result<Self, Self::Err> {
26 match method {
27 "SnapshotInspect" => Ok(DiagnosticsMethod::SnapshotInspect),
28 _ => return Err(format_err!("invalid Diagnostics Facade method: {}", method)),
29 }
30 }
31}