Enum timely::dataflow::operators::capture::event::Event
[−]
[src]
pub enum Event<T, D> { Progress(Vec<(T, i64)>), Messages(T, Vec<D>), }
Data and progress events of the captured stream.
Variants
Progress(Vec<(T, i64)>)
Progress received via push_external_progress
.
Messages(T, Vec<D>)
Messages received via the data stream.
Trait Implementations
impl<T: Debug, D: Debug> Debug for Event<T, D>
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more
impl<T: Clone, D: Clone> Clone for Event<T, D>
[src]
fn clone(&self) -> Event<T, D>
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl<T: Abomonation, D: Abomonation> Abomonation for Event<T, D>
[src]
unsafe fn entomb<W: Write>(&self, write: &mut W) -> Result<()>
[src]
Write any additional information about &self
beyond its binary representation. Read more
unsafe fn exhume<'a, 'b>(
&'a mut self,
bytes: &'b mut [u8]
) -> Option<&'b mut [u8]>
[src]
&'a mut self,
bytes: &'b mut [u8]
) -> Option<&'b mut [u8]>
Recover any information for &mut self
not evident from its binary representation. Read more
fn extent(&self) -> usize
[src]
Reports the number of further bytes required to entomb self
.