3 个版本 (稳定)

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

#129GUI

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

每月下载量 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