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