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