difference between supertrait and traitbound
Hi,
I was wondering what what (if there are any) difference is between using super trait or having a trait bound?
for example:
trait MyTrait: Sized {}
//vs
trait MyTrait where Self: Sized {}
is there any difference except the syntax, i prefer the first one but want to know if there could be any problems down the line?