pub trait AsPixmapMut {
// Required method
fn as_pixmap_mut(&mut self) -> PixmapMut<'_>;
}Expand description
Trait to get a PixmapMut from some type.
This allows the RenderContext to be wrapped around borrowed or owned types, without regard
for the storage medium.
Required Methods§
Sourcefn as_pixmap_mut(&mut self) -> PixmapMut<'_>
fn as_pixmap_mut(&mut self) -> PixmapMut<'_>
Get a PixmapMut from this type.