https://github.com/yoep/fx-handle
A unique opaque Rust handle which can be used as resource identifier.
https://github.com/yoep/fx-handle
Last synced: 4 months ago
JSON representation
A unique opaque Rust handle which can be used as resource identifier.
- Host: GitHub
- URL: https://github.com/yoep/fx-handle
- Owner: yoep
- License: apache-2.0
- Created: 2025-01-15T16:06:19.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-02-03T22:41:18.000Z (over 1 year ago)
- Last Synced: 2025-09-21T23:14:19.127Z (9 months ago)
- Language: Rust
- Size: 20.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# FX-Handle


[](https://crates.io/crates/fx-handle)
[](./LICENSE)
[](https://codecov.io/gh/yoep/fx-handle)
A unique opaque Rust `Handle` which can be used as resource identifier.
This resource identifier is used within the FX landscape to identify resources.
## Example
```rust
use fx_handle::Handle;
fn example() {
let handle = Handle::new();
println!("Generated Handle: {}", handle);
}
```