3 个版本 (稳定)
1.1.0 | 2023年11月2日 |
---|---|
1.0.0 | 2023年5月9日 |
0.1.0 | 2023年5月5日 |
#129 在 GUI
每月下载量 275,146
用于 1,036 个 crate (10 直接)
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