Ashley Mannix
Ashley Mannix
# Error Handling 2020-10-26 Meeting https://rust-lang.zulipchat.com/#narrow/stream/257204-project-error-handling/topic/Meeting.202020-10-26 ## `impl Error for &'a E` - We believe we should pursue stabilizing this. There's already an open PR to update: https://github.com/rust-lang/rust/pull/75180 ## `dyn...
# Error Handling 2020-11-09 Meeting https://rust-lang.zulipchat.com/#narrow/stream/257204-project-error-handling/topic/Meeting.202020-11-09 ## Progress on Backtrace in Core [Jane Lusby] - No progress on this since last time ## Update Generic Member Access API [Jane Lusby]...
# Error Handling 2021-02-01 Meeting Agenda ###### tags: `Error Handling` `Minutes` # Meeting Minutes - Action items have been moved into a separate [document][action-items-doc]. - [Fixing the error trait][fix-error-trait] seems...
This is quite a useful thing to be able to do, and is currently a feature gap in `log`. The underlying library that supports `log::kv::Value` did just recently get some...
Hi @koraa 👋 That’s an interesting design direction. I don’t think we’re likely to complicate level management in `log`; it’s intended to be a direct and straightforward library and using...
Thanks for the suggestion @WesleyAC :+1: I'm generally against adding custom attributes to the `bitflags` macros because the `macro_rules` macros are already mostly busting at the seams. In this case...
Thanks for the PR @nyurik! This seems like something worth doing going forwards. Would you be happy to port this to using `cargo-semver-checks` directly with `cargo install` rather than through...
Just coming back through some triage, it's been a while here so I'll go ahead and close this one, but we can revisit in the future.
Just coming in through some triage. It looks like we're not likely to follow this one through and the conflicts may be tricky to resolve given how things have changed...
Ah I see the issue here is that you're re-interpreting memory-mapped data as some flags type? If that wasn't the case then I'd expect you'd be able to use `from_bits(u32::from_le_bytes(..))`...