-
Notifications
You must be signed in to change notification settings - Fork 1
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
RequestResponseError が複雑なので良い感じにしたい #4
Comments
下から全部合成していくのは厳しいから、crate 用の Error 型定義して、Into は実装ごとに書いてね、って感じが良いかな。 |
thiserror の no_std 対応はまだマージされてないのか… (だいぶ前も見た気がする) 。 |
そうすると現状の |
今みたいに自前で合成していくので良いと思います。 ただ、どこかで切れ目作って、今作っているやつを上位から使う時に楽にできると良いかなぁ、と (それが カジュアルに |
result.map_err(|e| e.map(|e| FramedError::TransportError(e)))
result.map_err(|e| match e {
io::Error::WouldBlock => nb::Error::WouldBlock,
_ => e.into(), // io::Error -> nb::Error<T> への Into
}) というのも、任意のエラーを表現する enum |
@ciniml |
WouldBlock
を共通化するなら、nb::Result
どこかで導入できると、下あたりが
rust-erpc/examples/serial.rs
Lines 44 to 80 in 18d0254
こうできないかなぁ、みたいな?
The text was updated successfully, but these errors were encountered: