pub enum CompletionReceiver {
OneShot(Receiver<TaskCompletion>),
Periodic(PeriodicCompletionReceiver),
}Expand description
Completion receiver for one-shot and periodic tasks
一次性和周期任务完成通知接收器
Variants§
OneShot(Receiver<TaskCompletion>)
Periodic(PeriodicCompletionReceiver)
Auto Trait Implementations§
impl Freeze for CompletionReceiver
impl !RefUnwindSafe for CompletionReceiver
impl Send for CompletionReceiver
impl Sync for CompletionReceiver
impl Unpin for CompletionReceiver
impl !UnwindSafe for CompletionReceiver
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