1 2 3 4 5 6
/// One row in a wizard select list (label shown in the UI; value is returned on submit). #[derive(Debug, Clone)] pub struct SelectOption { pub label: String, pub value: String, }