pub struct EventBinding {
pub event: String,
pub action: ActionBinding,
}Expand description
Event binding that maps widget events to state messages.
Fields§
§event: StringWidget event name (e.g., “click”, “change”, “submit”)
action: ActionBindingAction to dispatch
Implementations§
Source§impl EventBinding
impl EventBinding
Sourcepub fn new(event: impl Into<String>, action: ActionBinding) -> Self
pub fn new(event: impl Into<String>, action: ActionBinding) -> Self
Create a new event binding.
Sourcepub fn on_click(action: ActionBinding) -> Self
pub fn on_click(action: ActionBinding) -> Self
Create a click event binding.
Sourcepub fn on_change(action: ActionBinding) -> Self
pub fn on_change(action: ActionBinding) -> Self
Create a change event binding.
Trait Implementations§
Source§impl Clone for EventBinding
impl Clone for EventBinding
Source§fn clone(&self) -> EventBinding
fn clone(&self) -> EventBinding
Returns a duplicate of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for EventBinding
impl Debug for EventBinding
Source§impl<'de> Deserialize<'de> for EventBinding
impl<'de> Deserialize<'de> for EventBinding
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for EventBinding
impl RefUnwindSafe for EventBinding
impl Send for EventBinding
impl Sync for EventBinding
impl Unpin for EventBinding
impl UnwindSafe for EventBinding
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)