This week's #Rust type of the day is `Result<Option<Result<Bytes>>>`
@jeremy_list In this case each layer has a different meaning it's basically Didn't Time Out ( Stream still Open ( IO read didn't fail (Bytes)))
@jeremy_list Good point I could probably wrap it in a macro to map the option and flatten it all.
@mauve I'd personally only handle it that way if some other crate I was using made it unusually difficult not to. Most of the time squashing it to one layer and pushing that completely into the error type instead ends up simplifying things overall.