3 个版本 (稳定)

1.1.0 2023年11月2日
1.0.0 2023年5月9日
0.1.0 2023年5月5日

#129GUI

Download history 45851/week @ 2024-04-10 50223/week @ 2024-04-17 50251/week @ 2024-04-24 54645/week @ 2024-05-01 49446/week @ 2024-05-08 49931/week @ 2024-05-15 52384/week @ 2024-05-22 54415/week @ 2024-05-29 59861/week @ 2024-06-05 72272/week @ 2024-06-12 68243/week @ 2024-06-19 71133/week @ 2024-06-26 69208/week @ 2024-07-03 70773/week @ 2024-07-10 68940/week @ 2024-07-17 54075/week @ 2024-07-24

每月下载量 275,146
用于 1,036 个 crate (10 直接)

MIT OR Apache-2.0 OR Zlib

19KB
192

cursor-icon: 公共光标图标类型

此库提供跨平台操作光标图标的标准化类型。

将图标转换为平台实际使用的值的工作留给类似 https://github.com/rust-windowing/winit 的库。


lib.rs:

跨平台光标图标类型。

此类型旨在用作 GUI 框架之间的标准互操作性类型,以便传达光标图标类型。

示例

use cursor_icon::CursorIcon;

// Parse a cursor icon from the string that describes it.
let cursor_name = "pointer";
let cursor_icon: CursorIcon = cursor_name.parse()?;
println!("The cursor icon is {:?}", cursor_icon);

依赖关系

~165KB