Enum itron_solid_fmp3::task::WakeError [−][src]
pub enum WakeError {
BadContext(MaybeKind),
BadId(MaybeKind),
NotSupported(MaybeKind),
AccessDenied(MaybeKind),
BadState(MaybeKind),
QueueOverflow(MaybeKind),
}
This is supported on crate feature
unstable
only.Expand description
Error type for TaskRef::wake
.
This type is an error kind type.
Variants
BadContext(MaybeKind)
Tuple Fields
0: MaybeKind
Requires: cfg(not(feature = "none"))
BadId(MaybeKind)
Tuple Fields
0: MaybeKind
Requires: cfg(not(feature = "none"))
NotSupported(MaybeKind)
Tuple Fields
0: MaybeKind
The task is a restricted task.
Requires: cfg(all(not(feature = "none"), feature = "rstr_task"))
AccessDenied(MaybeKind)
Tuple Fields
0: MaybeKind
Requires: cfg(any())
BadState(MaybeKind)
Tuple Fields
0: MaybeKind
Bad state.
- The task is dormant.
Requires: cfg(not(feature = "none"))
QueueOverflow(MaybeKind)
Tuple Fields
0: MaybeKind
Requires: cfg(not(feature = "none"))