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