445#458
Merged
Merged
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #445
Boxed error round-trip, anyhow parity (
from_boxed1.0.95,into_boxed_dyn_error1.0.98):AppError::from_boxed(kind, box)— wraps an already-boxeddyn Error + Send + Syncwithout re-boxing (stored as owned source, sodowncast/downcast_ref/downcast_mutwork on it)AppError::into_boxed_dyn_error(self)— boxes the error preserving kind, Display, metadata and the full source chain; always boxes self rather than unwrapping the source (no silent loss of kind/message/metadata), documented rationaleFrom<Box<dyn Error + Send + Sync>> for AppError(→ Internal) — checked against existing From impls, no conflicts; alloc-only, works under no_stdRound-trip verified: restored → original AppError → root cause chain intact; inner AppError recoverable by value. 5 new tests + 4 doctests; full suite, no_std build, clippy zero warnings, nightly fmt, readme_sync — all green.