pub struct JoinedStreamEvent {
pub left_event: StreamEvent,
pub right_event: StreamEvent,
pub join_timestamp: SystemTime,
}Expand description
Result of a successful join
Fields§
§left_event: StreamEvent§right_event: StreamEvent§join_timestamp: SystemTimeTrait Implementations§
Source§impl Clone for JoinedStreamEvent
impl Clone for JoinedStreamEvent
Source§fn clone(&self) -> JoinedStreamEvent
fn clone(&self) -> JoinedStreamEvent
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for JoinedStreamEvent
impl RefUnwindSafe for JoinedStreamEvent
impl Send for JoinedStreamEvent
impl Sync for JoinedStreamEvent
impl Unpin for JoinedStreamEvent
impl UnwindSafe for JoinedStreamEvent
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