pub enum Image<'a, 'b> {
Stencil(StencilImage<'a, 'b>),
Raster(RasterImage<'b>),
}Expand description
A type of image.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl<'a, 'b> Freeze for Image<'a, 'b>
impl<'a, 'b> !RefUnwindSafe for Image<'a, 'b>
impl<'a, 'b> Send for Image<'a, 'b>
impl<'a, 'b> Sync for Image<'a, 'b>
impl<'a, 'b> Unpin for Image<'a, 'b>
impl<'a, 'b> !UnwindSafe for Image<'a, 'b>
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