検索

phrase: max: clip:
target: order:
Results of 1 - 3 of about 3 for share (0.011 sec.)
ライフタイムシステムの限界 11905
はじめに 1. 安全と危険のご紹介 1.1. 安全と危険の相互作用 1.2. Unsafe と連携する 2. データレイアウ ... てみましょう。 struct Foo; impl Foo { fn mutate_and_share(&mut self) -> &Self { &*self } fn share(&self) {} ... n() { let mut foo = Foo; let loan = foo.mutate_and_share(); foo.share(); } このコードはコンパイルを通ると思 ... うかもしれません。 mutate_and_share は、 foo を一時的に変更可能に借用しますが、 共有参 ... ると、 foo は変更可能には借用されていないので、 foo.share() は成功すると思うでしょう。 ところが、このコードを ...
https://man.plustar.jp/rust/nomicon/lifetime-mismatch.html - [similar]
print.html 8259
はじめに 1. 安全と危険のご紹介 1.1. 安全と危険の相互作用 1.2. Unsafe と連携する 2. データレイアウ ... てみましょう。 struct Foo; impl Foo { fn mutate_and_share(&mut self) -> &Self { &*self } fn share(&self) {} ... n() { let mut foo = Foo; let loan = foo.mutate_and_share(); foo.share(); } このコードはコンパイルを通ると思 ... うかもしれません。 mutate_and_share は、 foo を一時的に変更可能に借用しますが、 共有参 ... ると、 foo は変更可能には借用されていないので、 foo.share() は成功すると思うでしょう。 ところが、このコードを ...
https://man.plustar.jp/rust/nomicon/print.html - [similar]
Send and Sync 7701
はじめに 1. 安全と危険のご紹介 1.1. 安全と危険の相互作用 1.2. Unsafe と連携する 2. データレイアウ ... to another thread. A type is Sync if it is safe to share between threads ( &T is Send). Send and Sync are f ... t). Rc isn't Send or Sync (because the refcount is shared and unsynchronized). Rc and UnsafeCell are very f ... ntally not thread-safe: they enable unsynchronized shared mutable state. However raw pointers are, strictly ...
https://man.plustar.jp/rust/nomicon/send-and-sync.html - [similar]
PREV 1 NEXT