[][src]Struct moore_svlog::port_list::ExtPort

pub struct ExtPort<'a> {
    pub id: NodeId,
    pub node: &'a dyn PortedNode<'a>,
    pub span: Span,
    pub name: Option<Spanned<Name>>,
    pub exprs: Vec<ExtPortExpr>,
}

An external port.

Fields

id: NodeId

Node ID of the port.

node: &'a dyn PortedNode<'a>

The node containing the port.

span: Span

Location of the port declaration in the source file.

name: Option<Spanned<Name>>

Optional name of the port.

exprs: Vec<ExtPortExpr>

Port expressions that map this external to internal ports. May be empty in case of a port that does not connect to anything.

Trait Implementations

impl<'a> Debug for ExtPort<'a>[src]

impl<'a> Eq for ExtPort<'a>[src]

impl HasDesc for ExtPort<'_>[src]

impl HasSpan for ExtPort<'_>[src]

impl<'a> PartialEq<ExtPort<'a>> for ExtPort<'a>[src]

impl<'a> StructuralEq for ExtPort<'a>[src]

impl<'a> StructuralPartialEq for ExtPort<'a>[src]

Auto Trait Implementations

impl<'a> !RefUnwindSafe for ExtPort<'a>[src]

impl<'a> Send for ExtPort<'a>[src]

impl<'a> Sync for ExtPort<'a>[src]

impl<'a> Unpin for ExtPort<'a>[src]

impl<'a> !UnwindSafe for ExtPort<'a>[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.