We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
2.2 構文と基本機能の章で "HDDの容量を64GiB増やすクロージャ" の例が記載されていますが
1行目のコードが
let mut s = Storage::SSD(512);
SSDになっていますが、正しくはHDDではないのでしょうか? 例えば次のようになると思います。sizeとrpmの値は数ページ前の "デバッグ出力の方法" を参考にしました。
let mut s = Storage::HDD {size: 2048, rpm: 7200};
The text was updated successfully, but these errors were encountered:
No branches or pull requests
2.2 構文と基本機能の章で "HDDの容量を64GiB増やすクロージャ" の例が記載されていますが
1行目のコードが
SSDになっていますが、正しくはHDDではないのでしょうか?
例えば次のようになると思います。sizeとrpmの値は数ページ前の "デバッグ出力の方法" を参考にしました。
The text was updated successfully, but these errors were encountered: