pub trait BlockConnections {
// Provided methods
fn input_connections(&self) -> Vec<(&'static str, Option<InputPortName>)> { ... }
fn output_connections(&self) -> Vec<(&'static str, Option<OutputPortName>)> { ... }
}Expand description
A trait for defining the connections of a block instance.