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