1use serde::Serialize; 2 3#[derive(Debug, Clone, Serialize)] 4pub struct ToggleOutput { 5 pub ok: bool, 6 pub selected: Option<String>, 7 pub active_class: bool, 8}