pub struct RadioState {
pub items: Vec<String>,
pub selected: usize,
}Expand description
State for a radio button group.
Renders a vertical list of mutually-exclusive options with ●/○ markers.
Fields§
§items: Vec<String>§selected: usizeImplementations§
Trait Implementations§
Source§impl Default for RadioState
impl Default for RadioState
Source§fn default() -> RadioState
fn default() -> RadioState
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RadioState
impl RefUnwindSafe for RadioState
impl Send for RadioState
impl Sync for RadioState
impl Unpin for RadioState
impl UnsafeUnpin for RadioState
impl UnwindSafe for RadioState
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more