pub enum EventControl {
    EventIdentifier(Box<EventControlEventIdentifier>),
    EventExpression(Box<EventControlEventExpression>),
    Asterisk(Box<EventControlAsterisk>),
    ParenAsterisk(Box<EventControlParenAsterisk>),
    SequenceIdentifier(Box<EventControlSequenceIdentifier>),
}Variants§
EventIdentifier(Box<EventControlEventIdentifier>)
EventExpression(Box<EventControlEventExpression>)
Asterisk(Box<EventControlAsterisk>)
ParenAsterisk(Box<EventControlParenAsterisk>)
SequenceIdentifier(Box<EventControlSequenceIdentifier>)
Trait Implementations§
Source§impl Clone for EventControl
 
impl Clone for EventControl
Source§fn clone(&self) -> EventControl
 
fn clone(&self) -> EventControl
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 EventControl
 
impl Debug for EventControl
Source§impl<'a> From<&'a EventControl> for RefNode<'a>
 
impl<'a> From<&'a EventControl> for RefNode<'a>
Source§fn from(x: &'a EventControl) -> RefNode<'a>
 
fn from(x: &'a EventControl) -> RefNode<'a>
Converts to this type from the input type.
Source§impl<'a> From<&'a EventControl> for RefNodes<'a>
 
impl<'a> From<&'a EventControl> for RefNodes<'a>
Source§fn from(x: &'a EventControl) -> RefNodes<'a>
 
fn from(x: &'a EventControl) -> RefNodes<'a>
Converts to this type from the input type.
Source§impl From<EventControl> for AnyNode
 
impl From<EventControl> for AnyNode
Source§fn from(x: EventControl) -> AnyNode
 
fn from(x: EventControl) -> AnyNode
Converts to this type from the input type.
Source§impl<'a> IntoIterator for &'a EventControl
 
impl<'a> IntoIterator for &'a EventControl
Source§impl PartialEq for EventControl
 
impl PartialEq for EventControl
Source§impl<'a> TryFrom<&'a EventControl> for Locate
 
impl<'a> TryFrom<&'a EventControl> for Locate
Source§impl TryFrom<AnyNode> for EventControl
 
impl TryFrom<AnyNode> for EventControl
Source§impl TryFrom<EventControl> for Locate
 
impl TryFrom<EventControl> for Locate
impl StructuralPartialEq for EventControl
Auto Trait Implementations§
impl Freeze for EventControl
impl RefUnwindSafe for EventControl
impl Send for EventControl
impl Sync for EventControl
impl Unpin for EventControl
impl UnwindSafe for EventControl
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