WMI crate for rust. Currently in beta.
```toml
[dependencies] wmi = "0.1" ```
Queries can be deserialized info a free-form HashMap
or a struct
:
```rust use std::collections::HashMap; use serde::Deserialize;
use wmi::{fromwbemclass_obj, COMLibrary, Variant, WMIConnection, WMIDateTime};
let comcon = COMLibrary::new().unwrap(); let wmicon = WMIConnection::new(com_con.into()).unwrap();
let results: Vec
for os in results { println!("{:#?}", os); }
struct Win32_OperatingSystem { Caption: String, Name: String, CurrentTimeZone: i16, Debug: bool, EncryptionLevel: u32, ForegroundApplicationBoost: u8, LastBootUpTime: WMIDateTime, }
let results: Vec
for os in results { println!("{:#?}", os); } ```
The wmi
crate is licensed under either of
Apache License, Version 2.0, (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.