pub struct ImageData {
pub data: Blob<u8>,
pub format: ImageFormat,
pub alpha_type: ImageAlphaType,
pub width: u32,
pub height: u32,
}Expand description
Owned shareable image resource.
Fields§
§data: Blob<u8>Blob containing the image data.
format: ImageFormatPixel format of the image.
alpha_type: ImageAlphaTypeEncoding of alpha in the image pixels.
width: u32Width of the image.
height: u32Height of the image.
Trait Implementations§
Source§impl From<ImageData> for ImageBrush
impl From<ImageData> for ImageBrush
impl StructuralPartialEq for ImageData
Auto Trait Implementations§
impl Freeze for ImageData
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