I read the below syntax from byteorder:
rdr.read_u16::<BigEndian>()
I can't find any documentation which explains the syntax instance.method::<SomeThing>()
I read the below syntax from byteorder:
rdr.read_u16::<BigEndian>()
I can't find any documentation which explains the syntax instance.method::<SomeThing>()
This construct is called turbofish. If you search for this statement, you will discover its definition and its usage.
Although the first edition of The Rust Programming Language is outdated, I feel that this particular section is better than in the second book.
Quoting the second edition:
You can use it in any kind of situation where the compiler is not able to deduce the type parameter, e.g.
a
does not work because it cannot deduce the variable type.b
does work because we specify the type parameter directly with the turbofish syntax.c
does work because we specify the type ofc
directly.