Colin Snover

Results 72 comments of Colin Snover

Does it work if you use `tap` instead of `click`?

The problem alluded to by this ticket exists for any rw directive that accesses fields because read fields are by-value whereas write fields are by-reference. It is actually fine to...

Is there a way to handle this in the general case (ab)using auto-deref so users don’t have to, or is this just some thing that should be documented?

Since I was the one who did the work it means there are probably some documentation links that are still broken, but I did my best to find and fix...

I do believe this was superseded by https://github.com/jam1garner/binrw/pull/162.

The incorrect error has been fixed by #139 so this can be closed when that lands.

This is fixed by c6931d02d60fe7aa4f634e69e4ecb1fecb047b5c. Thanks!

@Wesmania can you provide any more information about what you were trying to do? Currently trying to decide whether or not it is worth the pain of changing this since...

I’m also unsure what the use case for this would be and it sounds like this could be implemented at least initially as a separate crate, so I will go...

I feel like this, or something very similar, would also be the correct solution for issues like #102. Also, regarding footnote 1, I already have a [TakeSeek type](https://github.com/csnover/earthquake-rust/blob/master/libcommon/src/io/take_seek.rs) that can...