pub enum InterfaceItem {
PortDeclaration(Box<(PortDeclaration, Symbol)>),
NonPortInterfaceItem(Box<NonPortInterfaceItem>),
}Variants
PortDeclaration(Box<(PortDeclaration, Symbol)>)
NonPortInterfaceItem(Box<NonPortInterfaceItem>)
Trait Implementations
sourceimpl Clone for InterfaceItem
impl Clone for InterfaceItem
sourcefn clone(&self) -> InterfaceItem
fn clone(&self) -> InterfaceItem
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for InterfaceItem
impl Debug for InterfaceItem
sourceimpl<'a> From<&'a InterfaceItem> for RefNode<'a>
impl<'a> From<&'a InterfaceItem> for RefNode<'a>
sourcefn from(x: &'a InterfaceItem) -> Self
fn from(x: &'a InterfaceItem) -> Self
Converts to this type from the input type.
sourceimpl<'a> From<&'a InterfaceItem> for RefNodes<'a>
impl<'a> From<&'a InterfaceItem> for RefNodes<'a>
sourcefn from(x: &'a InterfaceItem) -> Self
fn from(x: &'a InterfaceItem) -> Self
Converts to this type from the input type.
sourceimpl From<InterfaceItem> for AnyNode
impl From<InterfaceItem> for AnyNode
sourcefn from(x: InterfaceItem) -> Self
fn from(x: InterfaceItem) -> Self
Converts to this type from the input type.
sourceimpl<'a> IntoIterator for &'a InterfaceItem
impl<'a> IntoIterator for &'a InterfaceItem
sourceimpl PartialEq<InterfaceItem> for InterfaceItem
impl PartialEq<InterfaceItem> for InterfaceItem
sourcefn eq(&self, other: &InterfaceItem) -> bool
fn eq(&self, other: &InterfaceItem) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &InterfaceItem) -> bool
fn ne(&self, other: &InterfaceItem) -> bool
This method tests for !=.
sourceimpl<'a> TryFrom<&'a InterfaceItem> for Locate
impl<'a> TryFrom<&'a InterfaceItem> for Locate
sourceimpl TryFrom<AnyNode> for InterfaceItem
impl TryFrom<AnyNode> for InterfaceItem
sourceimpl TryFrom<InterfaceItem> for Locate
impl TryFrom<InterfaceItem> for Locate
impl StructuralPartialEq for InterfaceItem
Auto Trait Implementations
impl RefUnwindSafe for InterfaceItem
impl Send for InterfaceItem
impl Sync for InterfaceItem
impl Unpin for InterfaceItem
impl UnwindSafe for InterfaceItem
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more