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<'de> Deserialize<'de> for ImageData
impl<'de> Deserialize<'de> for ImageData
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl<'a> From<&'a ImageData> for ImageBrushRef<'a>
impl<'a> From<&'a ImageData> for ImageBrushRef<'a>
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 UnsafeUnpin 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