Alex Veber

Results 5 issues of Alex Veber

consider this code: ```rust struct Foo(T); impl Foo { fn new(t: T) -> Self { Self(t) } } fn main() { let foo = Foo::new(1.2); } ``` This doesn't compile...

C-feature
A-ide

Hi, I am trying to write an app that will notify when a new VM is added to a HV. How can I listen to all events from the hypervisor?...

https://play.rust-lang.org/?version=stable&mode=release&edition=2021&gist=8c4019721056c7bf7ccfef8f6f4a6d86 This code hangs forever but finishes with std mpsc or crossbeam. Removing the sleep fixes the issue.

bug
help wanted

Hi, I took the example from the front page and ran in as a test, after adding some todo entries I checked that everything synced to CouchDB and it looked...

### Describe the bug I noticed that accessing host properties from multiple threads is slower than doing so serialy. I wrote a script to reproduce the issue: ```python # ruff:...

bug