@laund @buherator ternary-like source code minification is basically the example.
rust makes dense code, not readable code.
the minimization of misplacable but important characters (like ' for lifetimes) is similar to using very short, undescriptive variable names.
type is indeterminate to the reader on source alone,
python lambda-like one-liners seem encouraged,
large parts of common libraries have junk like this: https://github.com/serde-rs/serde/blob/master/serde_derive/src/bound.rs#L41 (where multi line mutations are used)
density of code and obfuscation of the type and mutability seem pretty frequent.
it's a language where squinting to find the misplaced period vs comma would be quite annoying.