Output

Trait Output 

Source
pub trait Output: OutputProps {
    type Writer: Clone;

    // Required methods
    fn add_link(&mut self, link: BaseLink<Self::Writer>);
    fn set(&mut self, value: Value);
}

Required Associated Types§

Required Methods§

Adds a link to this output

Source

fn set(&mut self, value: Value)

Set this output’s value by sending this value to all the registered links of this output.

Implementors§