How should I call paths like <T::BindTransport as IntoFuture>::Future? Documentation uses "Angle-bracket Form" (Universal Function Call Syntax). Is this the "official" term? It sounds a bit confusing, because you always uses angle brackets...
Hm, actually, <>:: can be called the reverse turbofish...
...and of course, by using the fish-turbo operator together with the previously seen turbofish, we can name a particular instance of a trait method with a generic output type:
<Type as Trait>::method::<u8>()
This construction is commonly referred to as the "fish-turbofish".