pub struct RadioIndicatorVisualState {
pub checked: bool,
pub hovered: bool,
pub pressed: bool,
pub focused: bool,
pub enabled: bool,
}Fields§
§checked: bool§hovered: bool§pressed: bool§focused: bool§enabled: boolImplementations§
Source§impl RadioIndicatorVisualState
impl RadioIndicatorVisualState
pub fn new( checked: bool, hovered: bool, pressed: bool, focused: bool, enabled: bool, ) -> Self
pub fn pressable_state(&self) -> PressableIndicatorVisualState
Trait Implementations§
Source§impl Clone for RadioIndicatorVisualState
impl Clone for RadioIndicatorVisualState
Source§fn clone(&self) -> RadioIndicatorVisualState
fn clone(&self) -> RadioIndicatorVisualState
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 moreimpl Copy for RadioIndicatorVisualState
Source§impl Debug for RadioIndicatorVisualState
impl Debug for RadioIndicatorVisualState
impl Eq for RadioIndicatorVisualState
impl StructuralPartialEq for RadioIndicatorVisualState
Auto Trait Implementations§
impl Freeze for RadioIndicatorVisualState
impl RefUnwindSafe for RadioIndicatorVisualState
impl Send for RadioIndicatorVisualState
impl Sync for RadioIndicatorVisualState
impl Unpin for RadioIndicatorVisualState
impl UnsafeUnpin for RadioIndicatorVisualState
impl UnwindSafe for RadioIndicatorVisualState
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