[][src]Struct nand2tetris_hdl_parser::Part

pub struct Part {
    pub name: String,
    pub internal: Vec<Pin>,
    pub external: Vec<Pin>,
}

A type that represents a part Internal pins are pins that match up to an input/output of the part - the first pin in a {}={} pair Internal pins are pins that match up to another part of the chip - the second pin in a {}={} pair

use nand2tetris_hdl_parser::Pin;
pub struct Part {
    pub name: String,
    pub internal: Vec<Pin>,
    pub external: Vec<Pin>,
}

Fields

name: String

Holds the name of the part

internal: Vec<Pin>

Holds internal connections (the pins which match up to the input pins of the part)

external: Vec<Pin>

Holds external connections

Trait Implementations

impl Clone for Part[src]

impl Debug for Part[src]

impl Eq for Part[src]

impl Hash for Part[src]

impl PartialEq<Part> for Part[src]

impl StructuralEq for Part[src]

impl StructuralPartialEq for Part[src]

Auto Trait Implementations

impl RefUnwindSafe for Part

impl Send for Part

impl Sync for Part

impl Unpin for Part

impl UnwindSafe for Part

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.