pub struct PeriodicCompletionNotifier(pub Sender<TaskCompletion, 32>);Expand description
Completion notifier for periodic tasks
Uses custom SPSC channel for high-performance, low-latency notification
周期任务完成通知器
使用自定义 SPSC 通道实现高性能、低延迟的通知
Tuple Fields§
§0: Sender<TaskCompletion, 32>Auto Trait Implementations§
impl Freeze for PeriodicCompletionNotifier
impl !RefUnwindSafe for PeriodicCompletionNotifier
impl Send for PeriodicCompletionNotifier
impl Sync for PeriodicCompletionNotifier
impl Unpin for PeriodicCompletionNotifier
impl !UnwindSafe for PeriodicCompletionNotifier
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