Enum itron_solid_asp3::task::ActivateOnError [−][src]
pub enum ActivateOnError {
BadContext(MaybeKind),
BadId(MaybeKind),
NotSupported(MaybeKind),
AccessDenied(MaybeKind),
QueueOverflow(MaybeKind),
BadParam(MaybeKind),
}
This is supported on crate feature
unstable
only.Expand description
Error type for TaskRef::activate_on
.
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(feature = "rstr_task", any()))
AccessDenied(MaybeKind)
Tuple Fields
0: MaybeKind
Requires: cfg(any())
QueueOverflow(MaybeKind)
Tuple Fields
0: MaybeKind
Requires: cfg(not(feature = "none"))
BadParam(MaybeKind)
Tuple Fields
0: MaybeKind
The class the task belongs to does not permit assigning tasks to the specified processor.
Requires: cfg(any(feature = "fmp3", feature = "solid_fmp3"))
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 !=
.