Struct timely::logging::ChannelsEvent
[−]
[src]
pub struct ChannelsEvent { pub id: usize, pub scope_addr: Vec<usize>, pub source: (usize, usize), pub target: (usize, usize), }
The creation of a channel between operators.
Fields
id: usize
Worker-unique identifier for the channel
scope_addr: Vec<usize>
Sequence of nested scope identifiers indicating the path from the root to this instance.
source: (usize, usize)
Source descriptor, indicating operator index and output port.
target: (usize, usize)
Target descriptor, indicating operator index and input port.
Trait Implementations
impl Abomonation for ChannelsEvent
[src]
unsafe fn entomb<W: Write>(&self, _write: &mut W) -> Result<()>
[src]
Write any additional information about &self
beyond its binary representation. Read more
fn extent(&self) -> usize
[src]
Reports the number of further bytes required to entomb self
.
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
impl Debug for ChannelsEvent
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more
impl Clone for ChannelsEvent
[src]
fn clone(&self) -> ChannelsEvent
[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 From<ChannelsEvent> for TimelyEvent
[src]
fn from(v: ChannelsEvent) -> TimelyEvent
[src]
Performs the conversion.