pub struct SemanticsActions {
pub focus: bool,
pub invoke: bool,
pub set_value: bool,
pub decrement: bool,
pub increment: bool,
pub scroll_by: bool,
pub set_text_selection: bool,
}Fields§
§focus: bool§invoke: bool§set_value: bool§decrement: boolDecrement a numeric value by one step.
increment: boolIncrement a numeric value by one step.
scroll_by: bool§set_text_selection: boolTrait Implementations§
Source§impl Clone for SemanticsActions
impl Clone for SemanticsActions
Source§fn clone(&self) -> SemanticsActions
fn clone(&self) -> SemanticsActions
Returns a duplicate 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 SemanticsActions
impl Debug for SemanticsActions
Source§impl Default for SemanticsActions
impl Default for SemanticsActions
Source§fn default() -> SemanticsActions
fn default() -> SemanticsActions
Returns the “default value” for a type. Read more
Source§impl PartialEq for SemanticsActions
impl PartialEq for SemanticsActions
impl Copy for SemanticsActions
impl Eq for SemanticsActions
impl StructuralPartialEq for SemanticsActions
Auto Trait Implementations§
impl Freeze for SemanticsActions
impl RefUnwindSafe for SemanticsActions
impl Send for SemanticsActions
impl Sync for SemanticsActions
impl Unpin for SemanticsActions
impl UnsafeUnpin for SemanticsActions
impl UnwindSafe for SemanticsActions
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