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

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

Additional methods on Icon that are specific to Windows.

Required methods

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.

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.

Implementors