pub struct Image {
pub shape_constructor: Box<dyn Fn(&mut FillBuilder<'_>)>,
pub bound: (u32, u32, u32, u32),
pub image: RgbaImage,
}Fields§
§shape_constructor: Box<dyn Fn(&mut FillBuilder<'_>)>§bound: (u32, u32, u32, u32)§image: RgbaImageAuto Trait Implementations§
impl Freeze for Image
impl !RefUnwindSafe for Image
impl !Send for Image
impl !Sync for Image
impl Unpin for Image
impl !UnwindSafe for Image
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