検索

phrase: max: clip:
target: order:
Results of 11 - 16 of about 16 for passed (0.032 sec.)
エイリアス - Rust By Example 日本語版 7936
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... トしてみましょう。 // Ok! Mutable references can be passed as immutable to `println!` println!("Point has coo ...
https://man.plustar.jp/rust/example/scope/borrow/alias.html - [similar]
明示的アノテーション - Rust By Example 日本語版 7936
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... ) = (4, 9); // Borrows (`&`) of both variables are passed into the function. // 2つの変数の借用(`&`)が関数に ...
https://man.plustar.jp/rust/example/scope/lifetime/explicit.html - [similar]
関数 - Rust By Example 日本語版 7936
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... ", x, y); } // Returning references that have been passed in is acceptable. // However, the correct lifetime ...
https://man.plustar.jp/rust/example/scope/lifetime/fn.html - [similar]
スタティックライフタイム - Rust By Example 日本語版 7936
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... impl Debug + 'static ) { println!( "'static value passed in is: {:?}", input ); } fn main() { // i is owned ...
https://man.plustar.jp/rust/example/scope/lifetime/static_lifetime.html - [similar]
安全でない操作 - Rust By Example 日本語版 7936
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... sumptions which must be upheld is that the pointer passed in points to valid memory and that the memory poin ...
https://man.plustar.jp/rust/example/unsafe.html - [similar]
Rust By Example 日本語版 7485
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... Note that the first argument `&self` is implicitly passed, i.e. // メソッドはドット演算子を用いて呼び出される ...
https://man.plustar.jp/rust/example/print.html - [similar]
PREV 1 2 NEXT