Trait LogicJoin

Source
pub trait LogicJoin {
    // Provided methods
    fn join_connect(&mut self) { ... }
    fn join_hdl(_my_name: &str, _this: &str, _that: &str) -> Vec<VerilogLink> { ... }
}

Provided Methods§

Source

fn join_connect(&mut self)

Source

fn join_hdl(_my_name: &str, _this: &str, _that: &str) -> Vec<VerilogLink>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl<D, const N: usize> LogicJoin for RAMWrite<D, N>
where D: Synth,

Source§

fn join_connect(&mut self)

Source§

fn join_hdl(my_name: &str, this: &str, that: &str) -> Vec<VerilogLink>

Source§

impl<const D: usize> LogicJoin for SDRAMDevice<D>

Source§

fn join_connect(&mut self)

Source§

fn join_hdl(my_name: &str, this: &str, that: &str) -> Vec<VerilogLink>

Implementors§