検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 34 for type (0.068 sec.)
Enumを定義する - Rust 日本語版 7381
The Rust Programming Language 日本語版 まえがき はじめに 1. 事始め 1.1. インストール 1.2. Hello, ... n main() { enum IpAddrKind { V4, V6, } fn route(ip_type: IpAddrKind) { } } そして、この関数をどちらの列挙子 ... n main() { enum IpAddrKind { V4, V6, } fn route(ip_type: IpAddrKind) { } route(IpAddrKind::V4); route(IpAd ...
https://man.plustar.jp/rust/book/ch06-01-defining-an-enum.html - [similar]
付録A:キーワード - Rust 日本語版 7285
The Rust Programming Language 日本語版 まえがき はじめに 1. 事始め 1.1. インストール 1.2. Hello, ... t - トレイトを定義する true - bool型のtrueリテラル type - 型エイリアスか関連型を定義する unsafe - unsafeな ... stract become box do final macro override priv try typeof unsized virtual yield 生識別子 生識別子 とは、普 ...
https://man.plustar.jp/rust/book/appendix-01-keywords.html - [similar]
パターン記法 - Rust 日本語版 7285
The Rust Programming Language 日本語版 まえがき はじめに 1. 事始め 1.1. インストール 1.2. Hello, ... ラーはこんな見た目でしょう: error[E0308]: mismatched types --> | 14 | .map(|Point { x, y }| x * x + y * y) | ... ed &Point, found struct `Point` | = note: expected type `&Point` found type `Point` このエラーは、コンパイ ...
https://man.plustar.jp/rust/book/ch18-03-pattern-syntax.html - [similar]
高度な関数とクロージャ - Rust 日本語版 7285
The Rust Programming Language 日本語版 まえがき はじめに 1. 事始め 1.1. インストール 1.2. Hello, ... :ops::Fn(i32) -> i32 + 'static` = note: the return type of a function must have a statically known size エ ...
https://man.plustar.jp/rust/book/ch19-05-advanced-functions-and-closures.html - [similar]
useキーワードでパスをスコープに持ち込む - Rust 日本語版 7189
The Rust Programming Language 日本語版 まえがき はじめに 1. 事始め 1.1. インストール 1.2. Hello, ... t guess: u32 = guess.trim().parse().expect("Please type a number!"); println!("You guessed: {}", guess); m ...
https://man.plustar.jp/rust/book/ch07-04-bringing-paths-into-scope-with-the-use-... - [similar]
テスト駆動開発でライブラリの機能を開発する - Rust 日本語版 7189
The Rust Programming Language 日本語版 まえがき はじめに 1. 事始め 1.1. インストール 1.2. Hello, ... ifetime parameter | = help: this function's return type contains a borrowed value, but the signature does ...
https://man.plustar.jp/rust/book/ch12-04-testing-the-librarys-functionality.html - [similar]
Rc<T>は、参照カウント方式のスマートポインタ - Rust 日本語版 7189
The Rust Programming Language 日本語版 まえがき はじめに 1. 事始め 1.1. インストール 1.2. Hello, ... e after move | = note: move occurs because `a` has type `List`, which does not implement the `Copy` trait ...
https://man.plustar.jp/rust/book/ch15-04-rc.html - [similar]
メッセージ受け渡しを使ってスレッド間でデータを転送する - Rust 日本語版 7189
The Rust Programming Language 日本語版 まえがき はじめに 1. 事始め 1.1. インストール 1.2. Hello, ... after move | = note: move occurs because `val` has type `std::string::String`, which does not implement th ...
https://man.plustar.jp/rust/book/ch16-02-message-passing.html - [similar]
所有権とは? - Rust 日本語版 7094
The Rust Programming Language 日本語版 まえがき はじめに 1. 事始め 1.1. インストール 1.2. Hello, ... されています) | = note: move occurs because `s1` has type `std::string::String`, which does not implement th ...
https://man.plustar.jp/rust/book/ch04-01-what-is-ownership.html - [similar]
文字列でUTF-8でエンコードされたテキストを保持する - Rust 日本語版 7094
The Rust Programming Language 日本語版 まえがき はじめに 1. 事始め 1.1. インストール 1.2. Hello, ... されていません) |> 3 |> let h = s1[0]; |> ^^^^^ the type `std::string::String` cannot be indexed by `{Integ ...
https://man.plustar.jp/rust/book/ch08-02-strings.html - [similar]
PREV 1 2 3 4 NEXT