Ephera@lemmy.ml to Rust Programming@lemmy.mlEnglish · 16 days agoWhen I have an Option<Result<T, E>> but need a Result<Option<T>, E>lemmy.mlimagemessage-square7fedilinkarrow-up152arrow-down16
arrow-up146arrow-down1imageWhen I have an Option<Result<T, E>> but need a Result<Option<T>, E>lemmy.mlEphera@lemmy.ml to Rust Programming@lemmy.mlEnglish · 16 days agomessage-square7fedilink
minus-squareRustyNova@lemmy.worldlinkfedilinkarrow-up4·16 days agoIt’s super useful for TryStreams with next(). I often want to ? the result up, so that I can have a clean item in my while let loop
It’s super useful for
TryStream
s withnext()
. I often want to?
the result up, so that I can have a clean item in mywhile let
loop