Struct accesskit::CustomAction
source · pub struct CustomAction {
pub id: i32,
pub description: Box<str>,
}
Expand description
Defines a custom action for a UI element.
For example, a list UI can allow a user to reorder items in the list by dragging the items.
Fields§
§id: i32
§description: Box<str>
Trait Implementations§
source§impl Clone for CustomAction
impl Clone for CustomAction
source§fn clone(&self) -> CustomAction
fn clone(&self) -> CustomAction
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for CustomAction
impl Debug for CustomAction
source§impl PartialEq for CustomAction
impl PartialEq for CustomAction
source§fn eq(&self, other: &CustomAction) -> bool
fn eq(&self, other: &CustomAction) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for CustomAction
impl StructuralEq for CustomAction
impl StructuralPartialEq for CustomAction
Auto Trait Implementations§
impl RefUnwindSafe for CustomAction
impl Send for CustomAction
impl Sync for CustomAction
impl Unpin for CustomAction
impl UnwindSafe for CustomAction
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