This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Rust for rustaceans | |
| Ch 1 | |
| Uses of multiple lifetime bounds within a single function or type eg a string split iterator | |
| Ch 2 | |
| Use trait associated types rather than trait genetics except if you expect multiple implementations of the trait for a given type | |
| You can use impl trait as the value for an associated type and the compiler will infer the specific type from use eg the return from IntoIterator::into_iter() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let g:ycm_language_server = | |
| \ [ | |
| \ { |