rust-cookbook
rust-cookbook copied to clipboard
https://rust-lang-nursery.github.io/rust-cookbook
for example https://rust-lang-nursery.github.io/rust-cookbook/development_tools/development_tools/debugging/log.html#log-a-debug-message-to-the-console gives 404
I realize opinions might run a bit strong here, but I'd like to make a case against the use of `error-chain` (or `failure`) for error handling in the cookbook examples....
The current example for downloading files interprets the response as text, and then turns it into bytes. ```rust let content = response.text().await?; copy(&mut content.as_bytes(), &mut dest)?; ``` This is fine...
This fixes one breaking skeptic test due to a change in the type of `Alphanumeric` between rand 0.7 and rand 0.8.
fixes #666
Compiling tar03 v0.1.0 (/Users/marc47/rust/tar03) error[E0107]: this enum takes 2 generic arguments but 1 generic argument was supplied --> src/main.rs:8:14 | 8 | fn main() -> Result { | ^^^^^^ --...
Hello! This is a feature request. For now,there are some gui create are gradually complete,we have `egui`,`iced` and other good create.It's nice if `cookbook` supply some introduce and contrast about...
Github API requires `user-agent-header` and without it, it returns a `403` reponse, ultimately resulting in vague decoding errors that could be difficult to debug for trying out the examples. For...
fixes #660
It shows the word "Custom" instead of "Bitfield" 