pub trait Device<E: Copy + Debug>: Updatable<E> {
// Required method
fn update_terminals(&mut self) -> NothingOrError<E>;
}Expand description
A mechanical device.
Required Methods§
Sourcefn update_terminals(&mut self) -> NothingOrError<E>
fn update_terminals(&mut self) -> NothingOrError<E>
Call only the update methods of owned terminals and do not update anything else with the
device.