Enum direct_gui::controls::ButtonState
[−]
[src]
pub enum ButtonState {
Normal,
Hover,
Pressed,
}In what state the button currently is in as determined by the update function.
Variants
NormalThe mouse is not hovering over the button and it's not pressed.
HoverThe mouse is hovering over the button but it's not pressed.
PressedThe mouse is hovering over the button and it's pressed.
Trait Implementations
impl Debug for ButtonState[src]
impl Copy for ButtonState[src]
impl Clone for ButtonState[src]
fn clone(&self) -> ButtonState[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more