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>Radio option labels.
selected: usizeSelected option index.
Implementations§
Trait Implementations§
Source§impl Clone for RadioState
impl Clone for RadioState
Source§fn clone(&self) -> RadioState
fn clone(&self) -> RadioState
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RadioState
impl Debug for RadioState
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