pub struct SyncPoint {
pub from: NodeId,
pub stream_from: StreamId,
pub to: NodeId,
pub stream_to: StreamId,
}Expand description
A pair of nodes on different streams where from must complete before to begins.
Fields§
§from: NodeIdThe producing node (on stream_from).
stream_from: StreamId§to: NodeIdThe consuming node (on stream_to).
stream_to: StreamIdTrait Implementations§
impl Eq for SyncPoint
impl StructuralPartialEq for SyncPoint
Auto Trait Implementations§
impl Freeze for SyncPoint
impl RefUnwindSafe for SyncPoint
impl Send for SyncPoint
impl Sync for SyncPoint
impl Unpin for SyncPoint
impl UnsafeUnpin for SyncPoint
impl UnwindSafe for SyncPoint
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