検索

phrase: max: clip:
target: order:
Results of 41 - 50 of about 193 for type (0.054 sec.)
文字列 - Rust By Example 日本語版 5519
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... .5. 複数のジェネリック境界 14.6. Where句 14.7. New Type Idiom 14.8. 関連型 ❱ 14.8.1. 関連型が必要になる状況 ... に変換できるのと同様です。 fn main() { // (all the type annotations are superfluous) // A reference to a s ... printable ones and ones that you don't know how to type. If you want a literal backslash, escape it with a ...
https://man.plustar.jp/rust/example/std/str.html - [similar]
TryFromおよびTryInto - Rust By Example 日本語版 5367
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... .5. 複数のジェネリック境界 14.6. Where句 14.7. New Type Idiom 14.8. 関連型 ❱ 14.8.1. 関連型が必要になる状況 ... venNumber(i32); impl TryFrom<i32> for EvenNumber { type Error = (); fn try_from(value: i32) -> Result<Self ...
https://man.plustar.jp/rust/example/conversion/try_from_try_into.html - [similar]
Creating a Library - Rust By Example 日本語版 5367
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... .5. 複数のジェネリック境界 14.6. Where句 14.7. New Type Idiom 14.8. 関連型 ❱ 14.8.1. 関連型が必要になる状況 ... that\n> "); private_function(); } $ rustc --crate-type=lib rary.rs $ ls lib* library.rlib ライブラリは「l ...
https://man.plustar.jp/rust/example/crates/lib.html - [similar]
クレート - Rust By Example 日本語版 5367
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... .5. 複数のジェネリック境界 14.6. Where句 14.7. New Type Idiom 14.8. 関連型 ❱ 14.8.1. 関連型が必要になる状況 ... からバイナリを作り出しますが、この振る舞いは --crate-type フラグに lib を渡すことでオーバーライドできます。 ...
https://man.plustar.jp/rust/example/crates.html - [similar]
エラーをBoxする - Rust By Example 日本語版 5367
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... .5. 複数のジェネリック境界 14.6. Where句 14.7. New Type Idiom 14.8. 関連型 ❱ 14.8.1. 関連型が必要になる状況 ... >`. // エイリアスを`Box<error::Error>`に変更する。 type Result<T> = std::result::Result<T, Box<dyn error:: ...
https://man.plustar.jp/rust/example/error/multiple_error_types/boxing_errors.htm... - [similar]
バインディング - Rust By Example 日本語版 5367
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... .5. 複数のジェネリック境界 14.6. Where句 14.7. New Type Idiom 14.8. 関連型 ❱ 14.8.1. 関連型が必要になる状況 ... ) -> u32 { 15 } fn main() { println!("Tell me what type of person you are"); match age() { 0 => println!(" ...
https://man.plustar.jp/rust/example/flow_control/match/binding.html - [similar]
ジェネリックトレイト - Rust By Example 日本語版 5367
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... .5. 複数のジェネリック境界 14.6. Where句 14.7. New Type Idiom 14.8. 関連型 ❱ 14.8.1. 関連型が必要になる状況 ... drop するようなメソッドにします。 // Non-copyable types. // コピー不可な型 // 訳注: `clone()`メソッドを用 ... t DoubleDrop<T> { // Define a method on the caller type which takes an // additional single parameter `T` ...
https://man.plustar.jp/rust/example/generics/gen_trait.html - [similar]
構造体 - Rust By Example 日本語版 5367
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... .5. 複数のジェネリック境界 14.6. Where句 14.7. New Type Idiom 14.8. 関連型 ❱ 14.8.1. 関連型が必要になる状況 ... 体におけるライフタイムも関数のそれと似ている。 // A type `Borrowed` which houses a reference to an // `i32` ...
https://man.plustar.jp/rust/example/scope/lifetime/struct.html - [similar]
Option - Rust By Example 日本語版 5367
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... .5. 複数のジェネリック境界 14.6. Where句 14.7. New Type Idiom 14.8. 関連型 ❱ 14.8.1. 関連型が必要になる状況 ... 1, 0); // Binding `None` to a variable needs to be type annotated // `None`を変数にアサインする際は、型を明 ...
https://man.plustar.jp/rust/example/std/option.html - [similar]
? - Rust By Example 日本語版 5367
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... .5. 複数のジェネリック境界 14.6. Where句 14.7. New Type Idiom 14.8. 関連型 ❱ 14.8.1. 関連型が必要になる状況 ... yZero, NonPositiveLogarithm, NegativeSquareRoot, } type MathResult = Result<f64, MathError>; fn div(x: f64 ...
https://man.plustar.jp/rust/example/std/result/question_mark.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 NEXT