pub struct Nand { /* private fields */ }
Expand description
The NAND gate is the only built-in logic component
a | b | out |
---|---|---|
0 | 0 | 1 |
0 | 1 | 1 |
1 | 0 | 1 |
1 | 1 | 0 |
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Nand
impl Send for Nand
impl Sync for Nand
impl Unpin for Nand
impl UnwindSafe for Nand
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more