pub struct JoinedPair<L, R> {
pub left: JoinEvent<L>,
pub right: JoinEvent<R>,
pub time_delta: Duration,
}Expand description
A successfully joined pair from the left and right streams.
Fields§
§left: JoinEvent<L>Left-stream event.
right: JoinEvent<R>Right-stream event.
time_delta: DurationAbsolute time difference between the two events.
Trait Implementations§
Source§impl<L: Clone, R: Clone> Clone for JoinedPair<L, R>
impl<L: Clone, R: Clone> Clone for JoinedPair<L, R>
Source§fn clone(&self) -> JoinedPair<L, R>
fn clone(&self) -> JoinedPair<L, R>
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<L, R> Freeze for JoinedPair<L, R>
impl<L, R> RefUnwindSafe for JoinedPair<L, R>where
L: RefUnwindSafe,
R: RefUnwindSafe,
impl<L, R> Send for JoinedPair<L, R>
impl<L, R> Sync for JoinedPair<L, R>
impl<L, R> Unpin for JoinedPair<L, R>
impl<L, R> UnsafeUnpin for JoinedPair<L, R>where
L: UnsafeUnpin,
R: UnsafeUnpin,
impl<L, R> UnwindSafe for JoinedPair<L, R>where
L: UnwindSafe,
R: 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