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
sourceimpl Clone for ElaborationSystemTask
impl Clone for ElaborationSystemTask
sourcefn clone(&self) -> ElaborationSystemTask
fn clone(&self) -> ElaborationSystemTask
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for ElaborationSystemTask
impl Debug for ElaborationSystemTask
sourceimpl<'a> From<&'a ElaborationSystemTask> for RefNode<'a>
impl<'a> From<&'a ElaborationSystemTask> for RefNode<'a>
sourcefn from(x: &'a ElaborationSystemTask) -> Self
fn from(x: &'a ElaborationSystemTask) -> Self
Converts to this type from the input type.
sourceimpl<'a> From<&'a ElaborationSystemTask> for RefNodes<'a>
impl<'a> From<&'a ElaborationSystemTask> for RefNodes<'a>
sourcefn from(x: &'a ElaborationSystemTask) -> Self
fn from(x: &'a ElaborationSystemTask) -> Self
Converts to this type from the input type.
sourceimpl From<ElaborationSystemTask> for AnyNode
impl From<ElaborationSystemTask> for AnyNode
sourcefn from(x: ElaborationSystemTask) -> Self
fn from(x: ElaborationSystemTask) -> Self
Converts to this type from the input type.
sourceimpl<'a> IntoIterator for &'a ElaborationSystemTask
impl<'a> IntoIterator for &'a ElaborationSystemTask
sourceimpl PartialEq<ElaborationSystemTask> for ElaborationSystemTask
impl PartialEq<ElaborationSystemTask> for ElaborationSystemTask
sourcefn eq(&self, other: &ElaborationSystemTask) -> bool
fn eq(&self, other: &ElaborationSystemTask) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &ElaborationSystemTask) -> bool
fn ne(&self, other: &ElaborationSystemTask) -> bool
This method tests for !=.
sourceimpl<'a> TryFrom<&'a ElaborationSystemTask> for Locate
impl<'a> TryFrom<&'a ElaborationSystemTask> for Locate
sourceimpl TryFrom<AnyNode> for ElaborationSystemTask
impl TryFrom<AnyNode> for ElaborationSystemTask
sourceimpl TryFrom<ElaborationSystemTask> for Locate
impl TryFrom<ElaborationSystemTask> for Locate
impl StructuralPartialEq for ElaborationSystemTask
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more