Results 1 comments of Rodrigo Rivas Costa

I managed to annotate the return type by writing this: ```rust let stream = try_stream! { //... }; let _: &dyn Stream = &stream; ``` Not the prettiest code, but...