Michael Mestnik

Results 84 issues of Michael Mestnik

https://github.com/Geal/nom/blob/ac34e5ac110c82d3ae7e28149a180fb9298b8089/src/internal.rs#L98 From the docs ```Prefer using Into over using From when specifying trait bounds on a generic function. This way, types that directly implement Into can be used as arguments...

Something like: https://gitlab.com/cheako/hidcat/-/blob/6eaa386248e74d5d7ea9d9eb26717bd0e0208263/src/main.rs#L79-107 Referance taken from: https://www.freedesktop.org/wiki/Software/systemd/logind/

component: backend
type: improvement

I just learned about rust and now am lamenting my decision to write [vkwayland](https://bitbucket.org/cheako/vkwayland/src/master/) in CPP. This project looks to have most everything required to support a Vulkan Backend and...

component: backend
type: improvement
status: needs investigation

Here is a full transcript... ``` root@agartha:~# dmesg [260851.823996] usb 8-2: new high-speed USB device number 16 using xhci_hcd [260852.024834] usb 8-2: New USB device found, idVendor=04e8, idProduct=685d [260852.024839] usb...

```"foo\"bar"```, the ```\``` should be highlighted... IMHO.

enhancement

Is an async version of rexpect a new crate or should there just be an async module?

I don't know how ppl feel about API changes, I'd guess there are so few users it doesn't matter as long as the minor version id bumped appropriately. APIs should...

Some binary data cannot be represented in an `&str`, so functions that take `&[u8]` are necessary. Unless I misunderstand or am using the wrong tool. Use case is programing Marvell...

https://youtu.be/Q86V5DnSPPs?t=539 https://gitlab.com/cheako/hazel-rs/blob/1c04d1446a5a1c3628f4fba577ec276313cb93ea/src/renderer/r2d.rs#L432-593 I'd like to create some components and then have a function that takes an entity and figures out what components it has and call the appropriate function. I'd...

bug

https://docs.rs/noise/0.5.1/noise/struct.OpenSimplex.html does not specify it's output range, I only knew to look when I was getting negative numbers. Looks like it's -1 to 1, not sure if it's inclusive or...