pub struct CheckboxOptions {
pub indeterminate: bool,
}Expand description
Options for third-state checkboxes.
Fields§
§indeterminate: boolWhether the checkbox should render as indeterminate.
Trait Implementations§
Source§impl Clone for CheckboxOptions
impl Clone for CheckboxOptions
Source§fn clone(&self) -> CheckboxOptions
fn clone(&self) -> CheckboxOptions
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 CheckboxOptions
impl Debug for CheckboxOptions
Source§impl Default for CheckboxOptions
impl Default for CheckboxOptions
Source§fn default() -> CheckboxOptions
fn default() -> CheckboxOptions
Returns the “default value” for a type. Read more
impl Copy for CheckboxOptions
Auto Trait Implementations§
impl Freeze for CheckboxOptions
impl RefUnwindSafe for CheckboxOptions
impl Send for CheckboxOptions
impl Sync for CheckboxOptions
impl Unpin for CheckboxOptions
impl UnsafeUnpin for CheckboxOptions
impl UnwindSafe for CheckboxOptions
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