pub struct JoinEvent<T> {
pub timestamp: SystemTime,
pub key: String,
pub payload: T,
}Expand description
A timestamped event suitable for joining.
Fields§
§timestamp: SystemTimeWall-clock timestamp of the event.
key: StringJoin key (matched between left and right streams).
payload: TApplication payload.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for JoinEvent<T>where
T: Freeze,
impl<T> RefUnwindSafe for JoinEvent<T>where
T: RefUnwindSafe,
impl<T> Send for JoinEvent<T>where
T: Send,
impl<T> Sync for JoinEvent<T>where
T: Sync,
impl<T> Unpin for JoinEvent<T>where
T: Unpin,
impl<T> UnsafeUnpin for JoinEvent<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for JoinEvent<T>where
T: UnwindSafe,
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