検索
Results of 1 - 6 of about 6 for moved (0.016 sec.)
- クローン - Rust By Example 日本語版 12923
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
tln!("original: {:?}", pair); // Move `pair` into `moved_pair`, moves resources // `pair`を`moved_pair`に移...
動、資源は移動(`move`)する。 let moved_pair = pair; println!("moved: {:?}", moved_pair);...
O ^ この行をアンコメントしてみましょう。 // Clone `moved_pair` into `cloned_pair` (resources are included)...
// `moved_pair`を`cloned_pair`にクローンする。(資源もクロー...
- https://man.plustar.jp/rust/example/trait/clone.html - [similar]
- Partial moves - Rust By Example 日本語版 9797
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
le, which means that parts of the variable will be moved while other parts stay. In such a case, the parent...
owever the parts that are only referenced (and not moved) can still be used. fn main() { #[derive(Debug)] s...
e: String::from("Alice"), age: 20, }; // `name` is moved out of person, but `age` is referenced let Person...
name is {}", name); // Error! borrow of partially moved value: `person` partial move occurs //println!("Th...
- https://man.plustar.jp/rust/example/scope/move/partial_move.html - [similar]
- 要素の捕捉 - Rust By Example 日本語版 8280
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
を使用した後は移動や再借用が許可される。 let _color_moved = color; let mut count = 0; // A closure to increm...
esn't allow re-using variable after it // has been moved. // ^ 上の行のコメントアウトを解除すると、コンパイ...
- https://man.plustar.jp/rust/example/fn/closures/capture.html - [similar]
- Rc - Rust By Example 日本語版 8024
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
of scope ---"); } // Error! `rc_examples` already moved into `rc_a` // And when `rc_a` is dropped, `rc_exa...
- https://man.plustar.jp/rust/example/std/rc.html - [similar]
- 所有権とムーブ - Rust By Example 日本語版 7951
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
= 5u32; // *Copy* `x` into `y` - no resources are moved // `x`を`y`に *コピー* する。元の値が移動するわけで...
- https://man.plustar.jp/rust/example/scope/move.html - [similar]
- Rust By Example 日本語版 7787
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
を使用した後は移動や再借用が許可される。 let _color_moved = color; let mut count = 0; // A closure to increm...
esn't allow re-using variable after it // has been moved. // ^ 上の行のコメントアウトを解除すると、コンパイ...
- https://man.plustar.jp/rust/example/print.html - [similar]
PREV
1
NEXT