pub enum ImageData {
Color(Arc<ColorImage>),
Font(FontImage),
}
Expand description
An image stored in RAM.
To load an image file, see ColorImage::from_rgba_unmultiplied
.
In order to paint the image on screen, you first need to convert it to
See also: ColorImage
, FontImage
.
Variants§
Implementations§
Trait Implementations§
source§impl From<Arc<ColorImage>> for ImageData
impl From<Arc<ColorImage>> for ImageData
source§fn from(image: Arc<ColorImage>) -> Self
fn from(image: Arc<ColorImage>) -> Self
Converts to this type from the input type.
source§impl From<ColorImage> for ImageData
impl From<ColorImage> for ImageData
source§fn from(image: ColorImage) -> Self
fn from(image: ColorImage) -> Self
Converts to this type from the input type.
source§impl PartialEq for ImageData
impl PartialEq for ImageData
impl StructuralPartialEq for ImageData
Auto Trait Implementations§
impl RefUnwindSafe for ImageData
impl Send for ImageData
impl Sync for ImageData
impl Unpin for ImageData
impl UnwindSafe for ImageData
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