Trait pilka_winit::winit::platform::windows::IconExtWindows[][src]

pub trait IconExtWindows {
    pub fn from_path<P>(
        path: P,
        size: Option<PhysicalSize<u32>>
    ) -> Result<Self, BadIcon>
    where
        P: AsRef<Path>
;
pub fn from_resource(
        ordinal: u16,
        size: Option<PhysicalSize<u32>>
    ) -> Result<Self, BadIcon>; }

Additional methods on Icon that are specific to Windows.

Required methods

pub fn from_path<P>(
    path: P,
    size: Option<PhysicalSize<u32>>
) -> Result<Self, BadIcon> where
    P: AsRef<Path>, 
[src]

Create an icon from a file path.

Specify size to load a specific icon size from the file, or None to load the default icon size from the file.

In cases where the specified size does not exist in the file, Windows may perform scaling to get an icon of the desired size.

pub fn from_resource(
    ordinal: u16,
    size: Option<PhysicalSize<u32>>
) -> Result<Self, BadIcon>
[src]

Create an icon from a resource embedded in this executable or library.

Specify size to load a specific icon size from the file, or None to load the default icon size from the file.

In cases where the specified size does not exist in the file, Windows may perform scaling to get an icon of the desired size.

Loading content...

Implementors

impl IconExtWindows for Icon[src]

Loading content...