pub struct Widgets {
pub noninteractive: WidgetVisuals,
pub inactive: WidgetVisuals,
pub hovered: WidgetVisuals,
pub active: WidgetVisuals,
pub open: WidgetVisuals,
}Expand description
The visuals of widgets for different states of interaction.
Fields§
§noninteractive: WidgetVisualsThe style of a widget that you cannot interact with.
noninteractive.bg_strokeis the outline of windows.noninteractive.bg_fillis the background color of windows.noninteractive.fg_strokeis the normal text color.
inactive: WidgetVisualsThe style of an interactive widget, such as a button, at rest.
hovered: WidgetVisualsThe style of an interactive widget while you hover it, or when it is highlighted.
See Response::hovered, Response::highlighted and Response::highlight.
active: WidgetVisualsThe style of an interactive widget as you are clicking or dragging it.
open: WidgetVisualsThe style of a button that has an open menu beneath it (e.g. a combo-box)
Implementations§
Trait Implementations§
source§impl PartialEq for Widgets
impl PartialEq for Widgets
impl StructuralPartialEq for Widgets
Auto Trait Implementations§
impl Freeze for Widgets
impl RefUnwindSafe for Widgets
impl Send for Widgets
impl Sync for Widgets
impl Unpin for Widgets
impl UnwindSafe for Widgets
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