pub trait Output: OutputProps { type Writer: Clone; // Required methods fn add_link(&mut self, link: BaseLink<Self::Writer>); fn set(&mut self, value: Value); }
Adds a link to this output
Set this output’s value by sending this value to all the registered links of this output.