pub struct CapturedTauriEvent {
pub name: String,
pub payload: String,
pub timestamp: String,
}Expand description
A Tauri event captured from the application’s native event bus.
Fields§
§name: StringEvent name (e.g. “notification-added”, tauri://focus).
payload: StringSerialized event payload.
timestamp: StringISO 8601 timestamp.
Trait Implementations§
Source§impl Clone for CapturedTauriEvent
impl Clone for CapturedTauriEvent
Source§fn clone(&self) -> CapturedTauriEvent
fn clone(&self) -> CapturedTauriEvent
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 CapturedTauriEvent
impl Debug for CapturedTauriEvent
Auto Trait Implementations§
impl Freeze for CapturedTauriEvent
impl RefUnwindSafe for CapturedTauriEvent
impl Send for CapturedTauriEvent
impl Sync for CapturedTauriEvent
impl Unpin for CapturedTauriEvent
impl UnsafeUnpin for CapturedTauriEvent
impl UnwindSafe for CapturedTauriEvent
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