pub struct WindowIcon {
pub rgba: Vec<u8>,
pub width: u32,
pub height: u32,
}Expand description
32-bit RGBA window icon data used by native window backends.
Fields§
§rgba: Vec<u8>Pixels in row-major RGBA order.
width: u32Icon width in pixels.
height: u32Icon height in pixels.
Trait Implementations§
Source§impl Clone for WindowIcon
impl Clone for WindowIcon
Source§fn clone(&self) -> WindowIcon
fn clone(&self) -> WindowIcon
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for WindowIcon
impl Debug for WindowIcon
Source§impl<'de> Deserialize<'de> for WindowIcon
impl<'de> Deserialize<'de> for WindowIcon
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
Auto Trait Implementations§
impl Freeze for WindowIcon
impl RefUnwindSafe for WindowIcon
impl Send for WindowIcon
impl Sync for WindowIcon
impl Unpin for WindowIcon
impl UnsafeUnpin for WindowIcon
impl UnwindSafe for WindowIcon
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