on_stop

Attribute Macro on_stop 

Source
#[on_stop]
Expand description

A method wrapped with #[on_stop] macro is called when CDemoStop appears in replay.

ยงExamples

#[on_stop]
fn stop(&mut self, ctx: &Context) -> ObserverResult {
   Ok(())
}
#[on_stop]
fn stop(&mut self) -> ObserverResult {
   Ok(())
}