pub trait BuzzerClient {
    // Required method
    fn buzzer_done(&self, status: Result<(), ErrorCode>);
}

Required Methods§

source

fn buzzer_done(&self, status: Result<(), ErrorCode>)

Called when the current sound played by the buzzer has finished or it was stopped.

Implementors§