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