#[non_exhaustive]pub enum ActionCursor {
None,
Pointer,
}Expand description
Pointer-cursor decoration for action overlays.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Clone for ActionCursor
impl Clone for ActionCursor
Source§fn clone(&self) -> ActionCursor
fn clone(&self) -> ActionCursor
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 ActionCursor
Source§impl Debug for ActionCursor
impl Debug for ActionCursor
impl Eq for ActionCursor
Source§impl PartialEq for ActionCursor
impl PartialEq for ActionCursor
impl StructuralPartialEq for ActionCursor
Auto Trait Implementations§
impl Freeze for ActionCursor
impl RefUnwindSafe for ActionCursor
impl Send for ActionCursor
impl Sync for ActionCursor
impl Unpin for ActionCursor
impl UnsafeUnpin for ActionCursor
impl UnwindSafe for ActionCursor
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