pub struct LogicCell {
pub output_pins: IndexMap<CompactString, Result<LogicOutputPin, &'static str>>,
}Expand description
A logic cell.
Fields
output_pins: IndexMap<CompactString, Result<LogicOutputPin, &'static str>>The output pins are mapped to functions.
Some pins can fail to build their logic. They will instead record an error type in this map.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for LogicCell
impl Send for LogicCell
impl Sync for LogicCell
impl Unpin for LogicCell
impl UnwindSafe for LogicCell
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