pub enum SemanticInput {
Click(UiId),
Focus(UiId),
Blur(UiId),
SetValue {
target: UiId,
value: String,
},
Action {
target: UiId,
action: SemanticAction,
},
}Variants§
Trait Implementations§
Source§impl Clone for SemanticInput
impl Clone for SemanticInput
Source§fn clone(&self) -> SemanticInput
fn clone(&self) -> SemanticInput
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 moreSource§impl Debug for SemanticInput
impl Debug for SemanticInput
Source§impl PartialEq for SemanticInput
impl PartialEq for SemanticInput
impl StructuralPartialEq for SemanticInput
Auto Trait Implementations§
impl Freeze for SemanticInput
impl RefUnwindSafe for SemanticInput
impl Send for SemanticInput
impl Sync for SemanticInput
impl Unpin for SemanticInput
impl UnsafeUnpin for SemanticInput
impl UnwindSafe for SemanticInput
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