pub struct CheckboxStyleConfig {
pub state: Signal<CheckboxState>,
pub is_hovered: Signal<bool>,
pub is_pressed: Signal<bool>,
pub is_focused: Signal<bool>,
pub is_disabled: Signal<bool>,
pub variant: CheckboxVariant,
}Fields§
§state: Signal<CheckboxState>§is_hovered: Signal<bool>§is_pressed: Signal<bool>§is_focused: Signal<bool>§is_disabled: Signal<bool>§variant: CheckboxVariantTrait Implementations§
Source§impl Clone for CheckboxStyleConfig
impl Clone for CheckboxStyleConfig
Source§fn clone(&self) -> CheckboxStyleConfig
fn clone(&self) -> CheckboxStyleConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl !RefUnwindSafe for CheckboxStyleConfig
impl !Send for CheckboxStyleConfig
impl !Sync for CheckboxStyleConfig
impl !UnwindSafe for CheckboxStyleConfig
impl Freeze for CheckboxStyleConfig
impl Unpin for CheckboxStyleConfig
impl UnsafeUnpin for CheckboxStyleConfig
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