Mindaugas Vinkelis
Mindaugas Vinkelis
I didn't look very closely at code, but I think you need to send `SpanContext` together with messages. Something like this. For sender: ```rust sender.send((msg, cx.span().span_context().clone()) ``` For reciever: ```rust...
You're right. Currently, pointers as arrays are not supported :) I'm planning to implement them in future, but cannot tell exact date yet, but pull requests are welcome :)
Hi, You can do it two ways, 1. Write an extension. 2. Write wrapper type for ptr and size and implement ContainerTraits for it. I would prefer to write an...
No, there are no plans to meet it, simply because it's easy to implement, but there might be too many edge cases that doesn't fit for everyone anyway. Like in...
I understand your view, and your points are valid. I try to cover most standard types, so at least std would work seamlessly, and for other things, I included what...
Hello, I'm glad you make it work, I assume you don't need to deserialize this. Regarding `writeBuffer`, it will only iterate though every value if your platform's endianess doesn't match...
If matrix element type is float, double or one of new fixed type int_32t, int_64t etc, then it's ok. BTW, preferred way to do serialization and deserialization would be to...
Thanks for sharing!
I wouldn't want to include any additional dependency. However, it would be super cool to have separate `bitsery_uiring` library using modern cmake and I would include a link in the...
I will create a repo and will provide a cmake setup so you could start working on implementation