pub enum Event<F: IntoIterator, D> {
Progress(F),
Message(F::Item, D),
}
Expand description
Data and progress events of the native stream.
Variants§
Progress(F)
Indicates that timestamps have advanced to frontier F
Message(F::Item, D)
Indicates that event D happened at time T
Auto Trait Implementations§
impl<F, D> Freeze for Event<F, D>
impl<F, D> RefUnwindSafe for Event<F, D>
impl<F, D> Send for Event<F, D>
impl<F, D> Sync for Event<F, D>
impl<F, D> Unpin for Event<F, D>
impl<F, D> UnwindSafe for Event<F, D>
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