Enum delay_timer::error::TaskInstanceError [−][src]
pub enum TaskInstanceError {
DisSend(TrySendError<TimerEvent>),
DisGetEvent(TryRecvError),
DisCancel,
DisCancelTimeOut,
MisEventSender,
InternalChannelAnomaly(RecvError),
Expired,
}Expand description
Error enumeration for TaskInstance-related operations.
Variants
DisSend(TrySendError<TimerEvent>)TaskInstance sending failure.
TaskInstance event get failed.
TaskInstance cancel failure.
TaskInstance cancel TimeOut.
Missing event sender timer_event_sender.
Internal channel communication abnormality.
Running instance of the task is no longer maintained.
Trait Implementations
Performs the conversion.
Auto Trait Implementations
impl !RefUnwindSafe for TaskInstanceErrorimpl Send for TaskInstanceErrorimpl Sync for TaskInstanceErrorimpl Unpin for TaskInstanceErrorimpl !UnwindSafe for TaskInstanceError