[][src]Struct moore_svlog_syntax::ast::NetDeclData

pub struct NetDeclData<'a> {
    pub net_type: NetType,
    pub strength: Option<NetStrength>,
    pub kind: NetKind,
    pub ty: Type<'a>,
    pub delay: Option<DelayControl<'a>>,
    pub names: Vec<VarDeclName<'a>>,
}

A net declaration.

For example wire x, y, z.

Fields

net_type: NetTypestrength: Option<NetStrength>kind: NetKindty: Type<'a>delay: Option<DelayControl<'a>>names: Vec<VarDeclName<'a>>

Trait Implementations

impl<'a> AcceptVisitor<'a> for NetDeclData<'a>[src]

impl<'a> AnyNodeData for NetDeclData<'a>[src]

impl<'a> Clone for NetDeclData<'a>[src]

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

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

impl<'a> ForEachChild<'a> for NetDeclData<'a>[src]

impl<'a> ForEachNode<'a> for NetDeclData<'a>[src]

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

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

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

Auto Trait Implementations

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

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

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

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

impl<'a> !UnwindSafe for NetDeclData<'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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.