pub struct ScatterGatherState<T> {
pub worker_count: usize,
pub results: Vec<T>,
pub responded_workers: Vec<KernelId>,
pub start_time_us: u64,
}Expand description
Tracks scatter-gather operation state.
Fields§
§worker_count: usizeNumber of workers to scatter to.
results: Vec<T>Results received so far.
responded_workers: Vec<KernelId>Workers that have responded.
start_time_us: u64Start timestamp (microseconds).
Implementations§
Source§impl<T> ScatterGatherState<T>
impl<T> ScatterGatherState<T>
Sourcepub fn receive_result(&mut self, worker: KernelId, result: T)
pub fn receive_result(&mut self, worker: KernelId, result: T)
Record a result from a worker.
Sourcepub fn is_complete(&self) -> bool
pub fn is_complete(&self) -> bool
Check if all workers have responded.
Sourcepub fn pending_count(&self) -> usize
pub fn pending_count(&self) -> usize
Get count of pending responses.
Sourcepub fn take_results(self) -> Vec<T>
pub fn take_results(self) -> Vec<T>
Get the results (consumes the state).
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for ScatterGatherState<T>
impl<T> RefUnwindSafe for ScatterGatherState<T>where
T: RefUnwindSafe,
impl<T> Send for ScatterGatherState<T>where
T: Send,
impl<T> Sync for ScatterGatherState<T>where
T: Sync,
impl<T> Unpin for ScatterGatherState<T>where
T: Unpin,
impl<T> UnwindSafe for ScatterGatherState<T>where
T: UnwindSafe,
Blanket Implementations§
Source§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
Source§type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
Source§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
Converts some archived metadata to the pointer metadata for itself.
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
Source§impl<F, W, T, D> Deserialize<With<T, W>, D> for F
impl<F, W, T, D> Deserialize<With<T, W>, D> for F
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> LayoutRaw for T
impl<T> LayoutRaw for T
Source§fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
Gets the layout of the type.