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