[][src]Trait texture_synthesis::GeneratorProgress

pub trait GeneratorProgress {
    fn update(&mut self, info: ProgressUpdate);
}

Allows the generator to update external callers with the current progress of the image synthesis

Required methods

fn update(&mut self, info: ProgressUpdate)

Loading content...

Implementors

impl<G> GeneratorProgress for G where
    G: FnMut(ProgressUpdate) + Send
[src]

Loading content...