検索
Results of 1 - 1 of about 1 for Droppable (0.008 sec.)
- メモリ解放 - Rust By Example 日本語版 9414
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
呼ばれたタイミングが分かるようにしています。 struct Droppable { name: &'static str, } // This trivial implementa...
rop`にコンソール出力機能がつきます。 impl Drop for Droppable { fn drop(&mut self) { println!("> Dropping {}", s...
elf.name); } } fn main() { let _a = Droppable { name: "a" }; // block A { let _b = Droppable { n...
ame: "b" }; // block B { let _c = Droppable { name: "c" }; let _d = Droppable { name: "d" }; p...
- https://man.plustar.jp/rust/example/trait/drop.html - [similar]
PREV
1
NEXT