Enum itron_solid_asp3::semaphore::WaitTimeoutError [−][src]
pub enum WaitTimeoutError {
BadContext(MaybeKind),
NotSupported(MaybeKind),
BadId(MaybeKind),
AccessDenied(MaybeKind),
Timeout(MaybeKind),
Released(MaybeKind),
TerminateRequest(MaybeKind),
Deleted(MaybeKind),
}
This is supported on crate feature
unstable
only.Expand description
Error type for SemaphoreRef::wait_timeout
.
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())
Timeout(MaybeKind)
Tuple Fields
0: MaybeKind
Requires: cfg(not(feature = "none"))
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"))
Trait Implementations
Categorize the specified error code. Read more
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.