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§
Source§impl Clone for ElaborationSystemTask
 
impl Clone for ElaborationSystemTask
Source§fn clone(&self) -> ElaborationSystemTask
 
fn clone(&self) -> ElaborationSystemTask
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moreSource§impl Debug for ElaborationSystemTask
 
impl Debug for ElaborationSystemTask
Source§impl<'a> From<&'a ElaborationSystemTask> for RefNode<'a>
 
impl<'a> From<&'a ElaborationSystemTask> for RefNode<'a>
Source§fn from(x: &'a ElaborationSystemTask) -> RefNode<'a>
 
fn from(x: &'a ElaborationSystemTask) -> RefNode<'a>
Converts to this type from the input type.
Source§impl<'a> From<&'a ElaborationSystemTask> for RefNodes<'a>
 
impl<'a> From<&'a ElaborationSystemTask> for RefNodes<'a>
Source§fn from(x: &'a ElaborationSystemTask) -> RefNodes<'a>
 
fn from(x: &'a ElaborationSystemTask) -> RefNodes<'a>
Converts to this type from the input type.
Source§impl From<ElaborationSystemTask> for AnyNode
 
impl From<ElaborationSystemTask> for AnyNode
Source§fn from(x: ElaborationSystemTask) -> AnyNode
 
fn from(x: ElaborationSystemTask) -> AnyNode
Converts to this type from the input type.
Source§impl<'a> IntoIterator for &'a ElaborationSystemTask
 
impl<'a> IntoIterator for &'a ElaborationSystemTask
Source§impl PartialEq for ElaborationSystemTask
 
impl PartialEq for ElaborationSystemTask
Source§impl<'a> TryFrom<&'a ElaborationSystemTask> for Locate
 
impl<'a> TryFrom<&'a ElaborationSystemTask> for Locate
Source§impl TryFrom<AnyNode> for ElaborationSystemTask
 
impl TryFrom<AnyNode> for ElaborationSystemTask
Source§impl TryFrom<ElaborationSystemTask> for Locate
 
impl TryFrom<ElaborationSystemTask> for Locate
impl StructuralPartialEq for ElaborationSystemTask
Auto Trait Implementations§
impl Freeze for ElaborationSystemTask
impl RefUnwindSafe for ElaborationSystemTask
impl Send for ElaborationSystemTask
impl Sync for ElaborationSystemTask
impl Unpin for ElaborationSystemTask
impl UnwindSafe for ElaborationSystemTask
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more