Jake Goulding
Jake Goulding
https://github.com/shepmaster/snafu/issues/27#issuecomment-467663459: > I can imagine wanting to remove the source field in non-debug builds in tight-loops or resource-constrained situations. It would be nice if that was just a change to...
Got these when building; should I be worried? ``` Decoding Conflict: 000011.......... 0000............ 00.............. ................ ADDRdRr 000011__________ LSLRd 000011__________ Decoding Conflict: 000111.......... 0001............ 00.............. ................ ADCRdRr 000111__________ ROLRd 000111__________ Decoding...
To reproduce: 1. Increase the default debounce time: ```diff diff --git a/src/common/components/FormEditWrapper.jsx b/src/common/components/FormEditWrapper.jsx index 2276e58..800c4a0 100644 --- a/src/common/components/FormEditWrapper.jsx +++ b/src/common/components/FormEditWrapper.jsx @@ -24,7 +24,7 @@ class FormEditWrapper extends Component { onChangePropName...
The `ValidationsReflex` class does not need to exist as it's never used. We could not figure out how `reflex_permanent: true` was needed, and when we removed it in our local...
For purposes of HTTP caching, it would be good to have access to the metadata of the file, specifically to get the modification time. I was thinking a structure mimicking...
e.g. ``` rustc -Z unstable-options --print target-spec-json --target avr-unknown-unknown > my-target.json ```
[...] could an editor not be as fancy as ace but work fine with those utilities like the one that that [Programiz](https://programiz.com/c-programming/online-compiler) website uses? I mean, if it was done,...
# `provide(deref)` shorthand for strings et. al. (`String` => `&str`) For example: ```rust struct Error { #[provide(deref)] name: String, } ``` # Disable providing for opaque errors For example, make...
I assume we will want to continue supporting the backtrace crate for a while to support older Rust versions, but we should be able to change our default to the...
> An error type with a source error should either return that error via source or include that source's error message in its own Display output, but never both. https://github.com/rust-lang/project-error-handling/issues/27#issuecomment-763950178...