[][src]Struct virt_ic::chip::gates::GateNot

pub struct GateNot { /* fields omitted */ }

A chip with 6 bundled "NOT" gates

Diagram

       ---__---
   A --|1   14|-- VCC
  !A --|2   13|-- D
   B --|3   12|-- !D
  !B --|4   11|-- E
   C --|5   10|-- !E
  !C --|6    9|-- F
 GND --|7    8|-- !F
       --------

Implementations

impl GateNot[src]

pub const A: u8[src]

pub const NOT_A: u8[src]

pub const B: u8[src]

pub const NOT_B: u8[src]

pub const C: u8[src]

pub const NOT_C: u8[src]

pub const D: u8[src]

pub const NOT_D: u8[src]

pub const E: u8[src]

pub const NOT_E: u8[src]

pub const F: u8[src]

pub const NOT_F: u8[src]

pub const VCC: u8[src]

pub const GND: u8[src]

pub fn new() -> Self[src]

Trait Implementations

impl Chip for GateNot[src]

impl Debug for GateNot[src]

impl Default for GateNot[src]

Auto Trait Implementations

impl !RefUnwindSafe for GateNot

impl !Send for GateNot

impl !Sync for GateNot

impl Unpin for GateNot

impl !UnwindSafe for GateNot

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, 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,