Daniel Sommermann
Daniel Sommermann
For my education: what can break when switching an API from returning `Result` to `Result`? The return value must be ignored today because it is unit, right? On Tue, Mar...
> Perhaps each call to `build_target` can be collected into a vector? `build_target()` mutates self, so I'd need to copy the config for each. But yeah, you can build multiple...
Ah yes, you are right about the output directory. That makes me hopeful for this issue since it seems doable without a public API change. Internally using a vector seems...
@alexcrichton are you open to PRs for this issue using the vector approach?
+1 would be nice to have easy access from the github homepage :) Thanks for meck by the way!
Yeah, I can qualify counting bytes vs bits in the text. Typically the size of integers is specified by bytes, not bits, however. Do you think all instances of the...
I just remembered that in the case of `dyn T` we can't use `core::mem::size_of`, so there is definitely a use case for both runtime and compile-time width calculation. I'll do...
I mean when dealing with a `PrimInt` trait object, we can't know the size of the type at compile time. For instance, in code dealing with a `Box`, there isn't...
@oherrala thanks for the crate link. I noticed `untrustended` reads byte by byte, whereas the PR reads all the needed bytes at once, so presumably the performance would be slightly...
> In Rust, it's not sound to expose a safe deref from &SharedPtr to &mut T / Pin because the lifetime system is not expressive enough to rule out calling...