pub trait GeneratorProgress {
// Required method
fn update(&mut self, info: ProgressUpdate<'_>);
}Expand description
Allows the generator to update external callers with the current progress of the image synthesis
Required Methods§
fn update(&mut self, info: ProgressUpdate<'_>)
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".