Enum smithay_client_toolkit::window::ButtonState
source · [−]pub enum ButtonState {
Hovered,
Idle,
Disabled,
}
Expand description
Represents the status of a button
Variants
Hovered
Button is being hovered over by pointer
Idle
Button is not being hovered over by pointer
Disabled
Button is disabled
Trait Implementations
sourceimpl Clone for ButtonState
impl Clone for ButtonState
sourcefn clone(&self) -> ButtonState
fn clone(&self) -> ButtonState
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ButtonState
impl Debug for ButtonState
sourceimpl PartialEq<ButtonState> for ButtonState
impl PartialEq<ButtonState> for ButtonState
impl Copy for ButtonState
impl Eq for ButtonState
impl StructuralEq for ButtonState
impl StructuralPartialEq for ButtonState
Auto Trait Implementations
impl RefUnwindSafe for ButtonState
impl Send for ButtonState
impl Sync for ButtonState
impl Unpin for ButtonState
impl UnwindSafe for ButtonState
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more