pub enum RadioButtonState {
Checked,
Unchecked,
}
Expand description
Represents the check status of a radio button
Variants§
Trait Implementations§
Source§impl Clone for RadioButtonState
impl Clone for RadioButtonState
Source§fn clone(&self) -> RadioButtonState
fn clone(&self) -> RadioButtonState
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 RadioButtonState
impl Debug for RadioButtonState
Source§impl PartialEq for RadioButtonState
impl PartialEq for RadioButtonState
impl Copy for RadioButtonState
impl Eq for RadioButtonState
impl StructuralPartialEq for RadioButtonState
Auto Trait Implementations§
impl Freeze for RadioButtonState
impl RefUnwindSafe for RadioButtonState
impl Send for RadioButtonState
impl Sync for RadioButtonState
impl Unpin for RadioButtonState
impl UnwindSafe for RadioButtonState
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