[][src]Struct moore_svlog::ast::NetDecl

pub struct NetDecl {
    pub span: Span,
    pub net_type: NetType,
    pub strength: Option<NetStrength>,
    pub kind: NetKind,
    pub ty: Type,
    pub delay: Option<DelayControl>,
    pub names: Vec<VarDeclName>,
}

Fields

span: Spannet_type: NetTypestrength: Option<NetStrength>kind: NetKindty: Typedelay: Option<DelayControl>names: Vec<VarDeclName>

Trait Implementations

impl Clone for NetDecl[src]

impl Debug for NetDecl[src]

impl Decodable for NetDecl[src]

impl Encodable for NetDecl[src]

impl Eq for NetDecl[src]

impl HasDesc for NetDecl[src]

impl HasSpan for NetDecl[src]

impl PartialEq<NetDecl> for NetDecl[src]

impl StructuralEq for NetDecl[src]

impl StructuralPartialEq for NetDecl[src]

Auto Trait Implementations

impl RefUnwindSafe for NetDecl

impl Send for NetDecl

impl Sync for NetDecl

impl Unpin for NetDecl

impl UnwindSafe for NetDecl

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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> Erased for T

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.