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