| Crates.io | fx-handle |
| lib.rs | fx-handle |
| version | 1.0.0 |
| created_at | 2025-01-15 16:55:43.864807+00 |
| updated_at | 2025-02-01 22:30:15.982456+00 |
| description | A unique opaque Rust handle which can be used as resource identifier. |
| homepage | |
| repository | https://github.com/yoep/fx-handle |
| max_upload_size | |
| id | 1517707 |
| size | 18,289 |
A unique opaque Rust Handle which can be used as resource identifier.
This resource identifier is used within the FX landscape to identify resources.
use fx_handle::Handle;
fn example() {
let handle = Handle::new();
println!("Generated Handle: {}", handle);
}