Enum itron_solid_fmp3::semaphore::WaitError [−][src]
pub enum WaitError {
BadContext(MaybeKind),
NotSupported(MaybeKind),
BadId(MaybeKind),
AccessDenied(MaybeKind),
Released(MaybeKind),
TerminateRequest(MaybeKind),
Deleted(MaybeKind),
}
This is supported on crate feature
unstable
only.Expand description
Error type for SemaphoreRef::wait
.
This type is an error kind type.
Variants
BadContext(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"))
BadId(MaybeKind)
Tuple Fields
0: MaybeKind
Requires: cfg(not(feature = "none"))
AccessDenied(MaybeKind)
Tuple Fields
0: MaybeKind
Requires: cfg(any())
Released(MaybeKind)
Tuple Fields
0: MaybeKind
Requires: cfg(not(feature = "none"))
TerminateRequest(MaybeKind)
Tuple Fields
0: MaybeKind
Requires: cfg(not(feature = "none"))
Deleted(MaybeKind)
Tuple Fields
0: MaybeKind
Requires: cfg(all(not(feature = "none"), feature = "dcre"))