We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
_
The following signature yields the mentioned error
fn shuffle(args: Vec<_>) -> Vec<_>
it should be replaced by
fn shuffle<T>(args: Vec<T>) -> Vec<T>
There should be an error hint suggesting this change.