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: WidgetVisuals
The style of a widget that you cannot interact with.
noninteractive.bg_stroke
is the outline of windows.noninteractive.bg_fill
is the background color of windows.noninteractive.fg_stroke
is the normal text color.
inactive: WidgetVisuals
The style of an interactive widget, such as a button, at rest.
hovered: WidgetVisuals
The style of an interactive widget while you hover it.
active: WidgetVisuals
The style of an interactive widget as you are clicking or dragging it.
open: WidgetVisuals
The style of a button that has an open menu beneath it (e.g. a combo-box)
Implementations
Trait Implementations
impl StructuralPartialEq for Widgets
Auto Trait Implementations
impl RefUnwindSafe for Widgets
impl Send for Widgets
impl Sync for Widgets
impl Unpin for Widgets
impl UnwindSafe for Widgets
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more