検索
Results of 1 - 7 of about 7 for lifetimes (0.009 sec.)
- Traits - Rust By Example 日本語版 12777
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
Ayu Rust By Example 日本語版 Traits Annotation of lifetimes in trait methods basically are similar to function...
s. Note that impl may have annotation of lifetimes too. // A struct with annotation of lifetimes. #[d...
)] struct Borrowed<'a> { x: &'a i32, } // Annotate lifetimes to impl. impl<'a> Default for Borrowed<'a> { fn de...
lt , By , Example , Rust , エラー , テストケース , lifetimes , Option...
- https://man.plustar.jp/rust/example/scope/lifetime/trait.html - [similar]
- 関数 - Rust By Example 日本語版 9869
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
{}", x); } // Mutable references are possible with lifetimes as well. // ミュータブルな参照でも同様 fn add_one<...
) { *x += 1; } // Multiple elements with different lifetimes. In this case, it // would be fine for both to hav...
time `'a`, but // in more complex cases, different lifetimes may be required. // 異なるライフタイムを持つ複数の...
- https://man.plustar.jp/rust/example/scope/lifetime/fn.html - [similar]
- ライフタイム - Rust By Example 日本語版 9869
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
それらがいかに異なるものであるかを見ていきます。 // Lifetimes are annotated below with lines denoting the creati...
──────┐ // │ { // │ let borrow1 = &i; // `borrow1` lifetime starts. ──┐│ // ││ println!("borrow1: {}", borrow1)...
┘│ // │ // │ { // │ let borrow2 = &i; // `borrow2` lifetime starts. ──┐│ // ││ println!("borrow2: {}", borrow2)...
Note that no names or types are assigned to label lifetimes. This restricts how lifetimes will be able to be u...
- https://man.plustar.jp/rust/example/scope/lifetime.html - [similar]
- 明示的アノテーション - Rust By Example 日本語版 8542
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
es two references to `i32` which have different // lifetimes `'a` and `'b`. These two lifetimes must both be at...
- https://man.plustar.jp/rust/example/scope/lifetime/explicit.html - [similar]
- メソッド - Rust By Example 日本語版 7870
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
ている。 struct Owner(i32); impl Owner { // Annotate lifetimes as in a standalone function. // 通常の関数と同様に...
- https://man.plustar.jp/rust/example/scope/lifetime/methods.html - [similar]
- テストケース: 連結リスト - Rust By Example 日本語版 7652
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
ust-lang.org/edition-guide/rust-2018/ownership-and-lifetimes/default-match-bindings.html // このメソッドは、`se...
- https://man.plustar.jp/rust/example/custom_types/enum/testcase_linked_list.html - [similar]
- Rust By Example 日本語版 6979
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
ust-lang.org/edition-guide/rust-2018/ownership-and-lifetimes/default-match-bindings.html // このメソッドは、`se...
- https://man.plustar.jp/rust/example/print.html - [similar]
PREV
1
NEXT