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