検索
Results of 1 - 8 of about 8 for where (1.443 sec.)
- Subtyping and Variance 12218
- はじめに 1. 安全と危険のご紹介 1.1. 安全と危険の相互作用 1.2. Unsafe と連携する 2. データレイアウ
...
l than taking a specific one. Variance Variance is where things get a bit complicated. Variance is a proper...
s desirable to be able to pass longer-lived things where shorter-lived things are needed. Similar reasoning...
It is reasonable to be able to pass &&'static str where an &&'a str is expected. The additional level of i...
the desire to be able to pass longer lived things where shorted lived things are expected. However this lo...
- https://man.plustar.jp/rust/nomicon/subtyping.html - [similar]
- 高階トレイト境界 11639
- はじめに 1. 安全と危険のご紹介 1.1. 安全と危険の相互作用 1.2. Unsafe と連携する 2. データレイアウ
...
> { data: (u8, u16), func: F, } impl<F> Closure<F> where F: Fn(&(u8, u16)) -> &u8, { fn call(&self) -> &u8...
data: (u8, u16), func: F, } impl<F> Closure<F> // where F: Fn(&'??? (u8, u16)) -> &'??? u8, { fn call<'a>(...
決できます。 HRTB を使うとつぎのように脱糖できます。 where for<'a> F: Fn(&'a (u8, u16)) -> &'a u8, ( Fn(a, b...
ta , self , call , func , Closure , ライフタイム , where , HRTB , 魔法...
- https://man.plustar.jp/rust/nomicon/hrtb.html - [similar]
- print.html 9525
- はじめに 1. 安全と危険のご紹介 1.1. 安全と危険の相互作用 1.2. Unsafe と連携する 2. データレイアウ
...
> { data: (u8, u16), func: F, } impl<F> Closure<F> where F: Fn(&(u8, u16)) -> &u8, { fn call(&self) -> &u8...
data: (u8, u16), func: F, } impl<F> Closure<F> // where F: Fn(&'??? (u8, u16)) -> &'??? u8, { fn call<'a>(...
決できます。 HRTB を使うとつぎのように脱糖できます。 where for<'a> F: Fn(&'a (u8, u16)) -> &'a u8, ( Fn(a, b...
l than taking a specific one. Variance Variance is where things get a bit complicated. Variance is a proper...
- https://man.plustar.jp/rust/nomicon/print.html - [similar]
- Atomics 8187
- はじめに 1. 安全と危険のご紹介 1.1. 安全と危険の相互作用 1.2. Unsafe と連携する 2. データレイアウ
...
. There is indeed a global shared memory space somewhere in your hardware, but from the perspective of each...
ler room to optimize the program more aggressively where a strict happens-before relationship isn't establi...
shed, but forces them to be more careful where one is established. The way we communicate these r...
- https://man.plustar.jp/rust/nomicon/atomics.html - [similar]
- Drop Check 8187
- はじめに 1. 安全と危険のご紹介 1.1. 安全と危険の相互作用 1.2. Unsafe と連携する 2. データレイアウ
...
alysis more precise, to reduce the number of cases where sound code is rejected as unsafe. This would help...
tten directly within it. In all of the above cases where the &'a u8 is accessed in the destructor, adding t...
- https://man.plustar.jp/rust/nomicon/dropck.html - [similar]
- PhantomData 7808
- はじめに 1. 安全と危険のご紹介 1.1. 安全と危険の相互作用 1.2. Unsafe と連携する 2. データレイアウ
...
th unsafe code, we can often end up in a situation where types or lifetimes are logically associated with a...
- https://man.plustar.jp/rust/nomicon/phantom-data.html - [similar]
- 型強制 7609
- はじめに 1. 安全と危険のご紹介 1.1. 安全と危険の相互作用 1.2. Unsafe と連携する 2. データレイアウ
...
rget=U> ) CoerceUnsized<Pointer<U>> for Pointer<T> where T: Unsize<U> は 全てのポインタ型 (Box や Rc のよう...
- https://man.plustar.jp/rust/nomicon/coercions.html - [similar]
- リーク 7030
- はじめに 1. 安全と危険のご紹介 1.1. 安全と危険の相互作用 1.2. Unsafe と連携する 2. データレイアウ
...
ります。 pub fn scoped<'a, F>(f: F) -> JoinGuard<'a> where F: FnOnce() + Send + 'a ここで f は、他のスレッドで...
- https://man.plustar.jp/rust/nomicon/leaking.html - [similar]
PREV
1
NEXT