Mark the end of any initialization commands. The implementor may wait for this method to be called before implementing prior commands, and so it is important for a user to invoke this method as soon as it is comfortable. This method can be invoked immediately, at the potential expense of performance.
(&mut self)
| 662 | /// and so it is important for a user to invoke this method as soon as it is comfortable. |
| 663 | /// This method can be invoked immediately, at the potential expense of performance. |
| 664 | pub fn initialization_complete(&mut self) { |
| 665 | self.initialized = true; |
| 666 | for instance in self.instances.values_mut() { |
| 667 | instance.call(Instance::initialization_complete); |
| 668 | } |
| 669 | } |
| 670 | |
| 671 | /// Wait until the controller is ready to do some processing. |
| 672 | /// |
nothing calls this directly
no test coverage detected