pub struct HxEvent {
pub name: String,
pub data: Option<Value>,
}Expand description
A client-side event for htmx to trigger, optionally carrying a JSON detail.
Fields§
§name: StringThe event name.
data: Option<Value>An optional detail payload delivered to the event listener.
Implementations§
Trait Implementations§
impl Eq for HxEvent
impl StructuralPartialEq for HxEvent
Auto Trait Implementations§
impl Freeze for HxEvent
impl RefUnwindSafe for HxEvent
impl Send for HxEvent
impl Sync for HxEvent
impl Unpin for HxEvent
impl UnsafeUnpin for HxEvent
impl UnwindSafe for HxEvent
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
impl<T> CloneAny for T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.