pub enum WaitStatement {
    Wait(Box<WaitStatementWait>),
    Fork(Box<WaitStatementFork>),
    Order(Box<WaitStatementOrder>),
}Variants§
Trait Implementations§
Source§impl Clone for WaitStatement
 
impl Clone for WaitStatement
Source§fn clone(&self) -> WaitStatement
 
fn clone(&self) -> WaitStatement
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 WaitStatement
 
impl Debug for WaitStatement
Source§impl<'a> From<&'a WaitStatement> for RefNode<'a>
 
impl<'a> From<&'a WaitStatement> for RefNode<'a>
Source§fn from(x: &'a WaitStatement) -> RefNode<'a>
 
fn from(x: &'a WaitStatement) -> RefNode<'a>
Converts to this type from the input type.
Source§impl<'a> From<&'a WaitStatement> for RefNodes<'a>
 
impl<'a> From<&'a WaitStatement> for RefNodes<'a>
Source§fn from(x: &'a WaitStatement) -> RefNodes<'a>
 
fn from(x: &'a WaitStatement) -> RefNodes<'a>
Converts to this type from the input type.
Source§impl From<WaitStatement> for AnyNode
 
impl From<WaitStatement> for AnyNode
Source§fn from(x: WaitStatement) -> AnyNode
 
fn from(x: WaitStatement) -> AnyNode
Converts to this type from the input type.
Source§impl<'a> IntoIterator for &'a WaitStatement
 
impl<'a> IntoIterator for &'a WaitStatement
Source§impl PartialEq for WaitStatement
 
impl PartialEq for WaitStatement
Source§impl<'a> TryFrom<&'a WaitStatement> for Locate
 
impl<'a> TryFrom<&'a WaitStatement> for Locate
Source§impl TryFrom<AnyNode> for WaitStatement
 
impl TryFrom<AnyNode> for WaitStatement
Source§impl TryFrom<WaitStatement> for Locate
 
impl TryFrom<WaitStatement> for Locate
impl StructuralPartialEq for WaitStatement
Auto Trait Implementations§
impl Freeze for WaitStatement
impl RefUnwindSafe for WaitStatement
impl Send for WaitStatement
impl Sync for WaitStatement
impl Unpin for WaitStatement
impl UnwindSafe for WaitStatement
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