pub trait Logic {
    fn update(&mut self);

    fn connect(&mut self) { ... }
    fn hdl(&self) -> Verilog { ... }
}

Required Methods

Provided Methods

Implementations on Foreign Types

Implementors