pub struct ProgressUpdate<'a> {
pub image: &'a RgbaImage,
pub total: ProgressStat,
pub stage: ProgressStat,
}
Expand description
The current state of the image generator
Fields§
§image: &'a RgbaImage
The currenty resolved image
total: ProgressStat
The total progress for the final image
stage: ProgressStat
The progress for the current stage
Auto Trait Implementations§
impl<'a> Freeze for ProgressUpdate<'a>
impl<'a> RefUnwindSafe for ProgressUpdate<'a>
impl<'a> Send for ProgressUpdate<'a>
impl<'a> Sync for ProgressUpdate<'a>
impl<'a> Unpin for ProgressUpdate<'a>
impl<'a> UnwindSafe for ProgressUpdate<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more