[][src]Struct yosys_netlist_json::Netname

pub struct Netname {
    pub hide_name: usize,
    pub bits: Vec<BitVal>,
    pub attributes: HashMap<String, AttributeVal>,
}

Represents the name of a net in a module

Fields

hide_name: usize

Indicates an internal/auto-generated name that starts with $

bits: Vec<BitVal>

Bit value(s) that should be given this name

attributes: HashMap<String, AttributeVal>

Attributes for this netname

Trait Implementations

impl Clone for Netname[src]

impl Debug for Netname[src]

impl<'de> Deserialize<'de> for Netname[src]

impl Eq for Netname[src]

impl PartialEq<Netname> for Netname[src]

impl Serialize for Netname[src]

impl StructuralEq for Netname[src]

impl StructuralPartialEq for Netname[src]

Auto Trait Implementations

impl RefUnwindSafe for Netname

impl Send for Netname

impl Sync for Netname

impl Unpin for Netname

impl UnwindSafe for Netname

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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

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

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

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized
[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.