-
Notifications
You must be signed in to change notification settings - Fork 2
sdk: emit bind-macro fault and level conversions as From impls #452
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Worth flagging before the code review: PR #358 (still open, unmerged) already closes the same issue (#264) with a very similar approach — converting the same shim functions in the same two files (
crates/nexum-sdk/src/wit_bindgen_macro.rs,crates/shepherd-sdk/src/wit_bindgen_macro.rs) toFromimpls. Worth closing one of the two to avoid duplicate work and a merge conflict once either lands — probably whichever hasn't been rebased onto the current Videre train, since this one is stacked onfeat/m3-intent-body-no-stdand #358 predates the train entirely.On the code itself: this is clean. Both
Fromimpls are a faithful 1:1 copy of the old functions' logic (including the#[non_exhaustive]wildcard arm and the five-tierLevelif/else chain — no branch dropped), the orphan-rule reasoning holds sincewit_bindgen::generate!makes the witFaulttype crate-local at each macro-expansion site, and all 6 changed module call sites resolve?/.map_err(Into::into)to the same target type the old explicit calls produced. One tiny doc nit:docs/05-sdk-design.md's updated snippet relies on?'s implicitFromconversion without naming theFromimpl in scope, unliketutorial-first-module.md's equivalent update which does call it out explicitly — a one-line note there would keep the two docs consistent.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks - two threads here.
Duplicate: closed #358, the develop-based PR that predates the train, as superseded by this one. #264 will close when this lands. Kept this PR since it is the version rebased onto the Videre train, as you suggested.
Doc nit: the two docs differ by audience on purpose.
tutorial-first-module.mdnames theFromimpls because it teaches the reader the conversion;docs/05-sdk-design.md's snippet stays terser and lets?speak for itself, in keeping with the terse-docs convention for the design docs. Leaving05-sdk-design.mdas-is, but happy to add the one-line note if you would rather they match verbatim.