Benedikt Mandelkow

Results 48 comments of Benedikt Mandelkow

I've not heard about custom lint rules, how would that work? An optional attribute sounds good as this might also not introduce more complexity into the existing ones. Providing good...

> because there would be runtime information describing their layout I can't quite follow because what I thought of was just a compile time check which would not have runtime...

another nice to have might be a way to say "assert_std140/ assert_std430" as an annotation and get an error if the struct is not structured correctly. This might be nice...

I checked again after the last jlink changes (@Tiwalun) because I got timeouts before as well and now I get: ``` DEBUG probe_rs::probe::jlink > Sucessfully switched to SWD DEBUG probe_rs::probe::jlink...

> a lot of fixes on current master The logging changed a bit but the error is the same for me: ``` DEBUG probe_rs::probe::jlink > Performing line reset! TRACE jaylink...

I totally agree, unfortunately I only got back to doing a bit of embedded through rust so I’ve not really set anything else up but if I do I’ll be...

Maybe I can add to that: I mostly finished rust bindings https://github.com/benmkw/imnodes-rs such that the examples from this repo work now. Thanks to both of you for imnodes and the...

> As far as I can see, this does not include any new tests for the added functionality. Yes, I was unsure how much this should be tested, maybe a...

Ok I see seems like I should be able to basically do exactly the same using cfg attributes and just forward to the FromPrimitive methods. The Results Error type would...

I added methods for converting from ints as well (some require `try_from`/ some can be done through `from` as they should never fail). In some generic code I'm currently using...