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