Mountain/Environment/TestProvider/TestControllerState.rs
1#![allow(non_snake_case)]
2
3//! Per-controller registration record. Carries the extension-provided
4//! identifier, label, owning sidecar, active flag, and supported test
5//! type tags. Stored in `TestProviderState::Struct` keyed by
6//! `ControllerIdentifier`.
7
8use serde::{Deserialize, Serialize};
9
10#[derive(Debug, Clone, Serialize, Deserialize)]
11pub struct Struct {
12 pub ControllerIdentifier:String,
13 pub Label:String,
14 pub SideCarIdentifier:Option<String>,
15 pub IsActive:bool,
16 pub SupportedTestTypes:Vec<String>,
17}