pub enum ElaborationSystemTask {
TaskFatal(Box<ElaborationSystemTaskFatal>),
TaskError(Box<ElaborationSystemTaskError>),
TaskWarning(Box<ElaborationSystemTaskWarning>),
TaskInfo(Box<ElaborationSystemTaskInfo>),
}Variants
TaskFatal(Box<ElaborationSystemTaskFatal>)
TaskError(Box<ElaborationSystemTaskError>)
TaskWarning(Box<ElaborationSystemTaskWarning>)
TaskInfo(Box<ElaborationSystemTaskInfo>)
Trait Implementations
Performs the conversion.
Performs the conversion.
Performs the conversion.
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for ElaborationSystemTask
impl Send for ElaborationSystemTask
impl Sync for ElaborationSystemTask
impl Unpin for ElaborationSystemTask
impl UnwindSafe for ElaborationSystemTask
Blanket Implementations
Mutably borrows from an owned value. Read more