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