[go: up one dir, main page]

Crate windows_collections

Crate windows_collections 

Source
Expand description

§Windows collection types

The windows-collections crate provides stock collection support for Windows APIs.

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

[dependencies.windows-collections]
version = "0.3"

Use the Windows collection types as needed:

use windows_collections::*;

let numbers = IIterable::<i32>::from(vec![1, 2, 3]);

for value in numbers {
    println!("{value}");
}

Naturally, the Windows collection types work with other Windows crates:

use windows_collections::*;
use windows_strings::*;

let greetings =
    IVectorView::<HSTRING>::from(vec![HSTRING::from("hello"), HSTRING::from("world")]);

for value in greetings {
    println!("{value}");
}

let map = std::collections::BTreeMap::from([("one".into(), 1), ("two".into(), 2)]);
let map = IMapView::<HSTRING, i32>::from(map);

assert_eq!(map.Lookup(h!("one")).unwrap(), 1);
assert_eq!(map.Lookup(h!("two")).unwrap(), 2);

Structs§

IIterable
IIterator
IKeyValuePair
IMap
IMapView
IVector
IVectorView

Traits§

IIterable_Impl
IIterator_Impl
IKeyValuePair_Impl
IMapView_Impl
IMap_Impl
IVectorView_Impl
IVector_Impl