pub trait WireBody:
Debug
+ DynClone
+ Send
+ Sync {
// Required methods
fn name(&self) -> &'static str;
fn wire_body(&self, prefix: &str, body: &mut TypedModel) -> TractResult<()>;
fn w_b_multipliers(&self) -> (usize, usize);
fn have_extra_c_state(&self) -> bool;
}