Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 499 Bytes

File metadata and controls

21 lines (15 loc) · 499 Bytes

windows-reference

The windows-reference crate implements IReference<T> for boxed Windows values.

Start by adding the following to your Cargo.toml file:

[dependencies.windows-reference]
version = "0.100"
use windows_reference::*;

let value = IReference::<i32>::from(42);
assert_eq!(value.Value().unwrap(), 42);