windows_collections/
lib.rs

1#![doc = include_str!("../readme.md")]
2#![cfg_attr(all(not(feature = "std")), no_std)]
3#![expect(
4    missing_docs,
5    non_snake_case,
6    non_camel_case_types,
7    clippy::missing_transmute_annotations
8)]
9
10mod bindings;
11pub use bindings::*;
12
13#[cfg(feature = "std")]
14const E_BOUNDS: windows_core::HRESULT = windows_core::HRESULT(0x8000000B_u32 as _);
15
16#[cfg(feature = "std")]
17mod iterable;
18#[cfg(feature = "std")]
19mod map_view;
20#[cfg(feature = "std")]
21mod vector_view;