The only #Rust tutorial you ever need is:
cargo doc --open -p <crate>
This opens documentation in the web browser for any crate that a project might be using.
Example would end up opening documentation for env_logger:
cargo add env_logger
cargo doc --open -p env_logger
@jarkko Have you checked the amount of documentation in for example windows crate? ;)