Tim Weis
Tim Weis
This is probably something that could more easily be worked into the [windows-rs](https://github.com/microsoft/windows-rs) crate, as that auto-generates Rust bindings. It is sourced from the [win32metadata](https://github.com/microsoft/win32metadata) project. The latter produces [ECMA-335](https://www.ecma-international.org/publications-and-standards/standards/ecma-335/)...
That would actually require a trait with an `async fn`, which—to my knowledge—is [not supported](https://rust-lang.github.io/async-book/07_workarounds/05_async_in_traits.html) ([`IInputStream`](https://docs.microsoft.com/en-us/uwp/api/windows.storage.streams.iinputstream) only exposes a `ReadAsync` method).
> I am relatively new to rust, curious how does below help if creating a collection isn't supported yet? > > > You can even just have a component that...
Here's a rough version that'll delegate to the intrinsic `GUID` visualizer: ```xml {*(GUID*)&data} ``` Alternatively, the following will work in Visual Studio as well (but may fail in WinDbg Preview):...
Thanks for taking the time to respond. I understand that when the system fires up its own modal loop, messages temporarily won't reach the application's message loop. As a consequence,...
@hcldan `VARIANT`s are gnarly, and using them from Rust produces terrifying code. > tell me if I'm headed in the correct direction The code you have properly instantiates a `VARIANT`...
@Ciantic That seems to agree with how the [`[in]` attribute](https://learn.microsoft.com/en-us/windows/win32/Midl/in) is documented. If my understanding is correct, using the [`ManuallyDrop`](https://doc.rust-lang.org/stable/std/mem/struct.ManuallyDrop.html) wrapper here would ultimately leak the object implementing the interface....
Just came across this issue, while catching up on Week in Rust/Call for Participation. A bit late, but hopefully not too late... I haven't had time yet to delve into...
@opeolluwa I've looked into it a bit, but haven't made any substantial progress yet. The weekend is going to be busy, too, but I think I'll have something to show...
> hey guys @tim-weis @zoo868e see this crate, https://crates.io/crates/wifidirect-legacy-ap That's very helpful indeed, thanks a lot for that. Not so much the crate itself, but the link to the [Wi-Fi...