pub trait LogicLink {
// Required methods
fn link(&mut self, other: &mut Self);
fn link_hdl(my_name: &str, this: &str, that: &str) -> Vec<VerilogLink>;
fn link_connect_source(&mut self);
fn link_connect_dest(&mut self);
}
Required Methods§
fn link(&mut self, other: &mut Self)
fn link_hdl(my_name: &str, this: &str, that: &str) -> Vec<VerilogLink>
fn link_connect_source(&mut self)
fn link_connect_dest(&mut self)
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.