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
レビュー済みのものとそうでないものを管理したいと思います。
match
if let
mod
pub
panic!
Result
cargo install
Box<T>
Deref
Drop
Rc<T>
RefCell<T>
Sync
Send
The text was updated successfully, but these errors were encountered:
No branches or pull requests
レビュー済みのものとそうでないものを管理したいと思います。
match
制御フロー演算子if let
で簡潔な制御フローmod
とファイルシステムpub
で公開するか制御するpanic!
で回復不能なエラーResult
で回復可能なエラーpanic!
すべきかするまいかcargo install
でCrates.ioからバイナリをインストールするBox<T>
はヒープのデータを指し、既知のサイズであるDeref
トレイトにより、参照を通してデータにアクセスできるDrop
トレイトにより、片付けの時にコードを実行するRc<T>
は、参照カウント方式のスマートポインタRefCell<T>
と内部可変性パターンSync
とSend
The text was updated successfully, but these errors were encountered: