Results 341 comments of m4b

I massively regret being convinced to change the default to (). I’m not sure how much it will break to change it back tho...

Oh I think I see; you just want it to use unit in it’s derive. Yea; this is getting awkward because the derive traits use endian ctx (as they should)...

Hmm, why doesn’t this work ? I’m also slightly confused by their spec; they say: call x the amount allocated to hold the string. call m the length of the...

Alternatively, you could play around with doing something like: ``` struct PaddedString(&’a str); ``` And then implement all the padding logic as a TryFromCtx impl for it, then you could...

Yes &str is zero copy, but I was referring to your Vec of stream headers. For the padded string yes would force client to use newtype _or_ you can just...

Ah yea, that’s very similar to #33. There is definitely some desire, and I’d be interested in a backwards compatible proposal, but I don’t think anyone’s found the time to...

I would love for someone to fix up the tests to build with no-std!

So I considered this a while ago since we don’t technically consume the object, but I made it take an owned value because it seemed “right”. That being said are...

An alternative to note is to add another tryinto method but I suppose we can always do that after (and add another pwrite method); but we can’t do the reverse...

Hmmm yea this 100% needs to be fixed. I wrote most of the derive code quickly for my needs (simple pods at first) and it isn’t super robust, and definitely...