pub trait ScreenSetupClient {
    // Required method
    fn command_complete(&self, r: Result<(), ErrorCode>);
}

Required Methods§

source

fn command_complete(&self, r: Result<(), ErrorCode>)

The screen will call this function to notify that a command has finished.

Implementors§