検索
Results of 1 - 10 of about 193 for create (0.025 sec.)
- create - Rust By Example 日本語版 13733
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
.3. Path 20.4. ファイル I/O ❱ 20.4.1. open 20.4.2. create 20.4.3. read lines 20.5. 子プロセス ❱ 20.5.1. パイ...
fault) Rust Coal Navy Ayu Rust By Example 日本語版 create create 関数はファイルを書き込み専用モードで開きます...
り値は`io::Result<File>` let mut file = match File::create(&path) { Err(why) => panic!("couldn't create {}: {...
時に期待されるアウトプットです。 $ mkdir out $ rustc create.rs && ./create successfully wrote to lorem_ipsum.t...
- https://man.plustar.jp/rust/example/std_misc/file/create.html - [similar]
- クロージャを返す関数 - Rust By Example 日本語版 12885
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
.3. Path 20.4. ファイル I/O ❱ 20.4.1. open 20.4.2. create 20.4.3. read lines 20.5. 子プロセス ❱ 20.5.1. パイ...
参照がクロージャに残ってしまうのを防ぐためです。 fn create_fn() -> impl Fn() { let text = "Fn".to_owned(); mo...
ve || println!("This is a: {}", text) } fn create_fnmut() -> impl FnMut() { let text = "FnMut".to_ow...
ed(); move || println!("This is a: {}", text) } fn create_fnonce() -> impl FnOnce() { let text = "FnOnce".to...
- https://man.plustar.jp/rust/example/fn/closures/output_parameters.html - [similar]
- ファイルシステムとのやり取り - Rust By Example 日本語版 11603
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
.3. Path 20.4. ファイル I/O ❱ 20.4.1. open 20.4.2. create 20.4.3. read lines 20.5. 子プロセス ❱ 20.5.1. パイ...
path: &Path) -> io::Result<()> { let mut f = File::create(path)?; f.write_all(s.as_bytes()) } // A simple im...
Path) -> io::Result<()> { match OpenOptions::new().create(true).write(true).open(path) { Ok(_) => Ok(()), Er...
Err(e), } } fn main() { println!("`mkdir a`"); // Create a directory, returns `io::Result<()>` // ディレクト...
- https://man.plustar.jp/rust/example/std_misc/fs.html - [similar]
- 識別子 - Rust By Example 日本語版 9256
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
.3. Path 20.4. ファイル I/O ❱ 20.4.1. open 20.4.2. create 20.4.3. read lines 20.5. 子プロセス ❱ 20.5.1. パイ...
esignator )でアノテーションされます。 macro_rules! create_function { // This macro takes an argument of desi...
gnator `ident` and // creates a function named `$func_name`. // The `ident` des...
called {:?}()", stringify!($func_name)); } }; } // Create functions named `foo` and `bar` with the above mac...
- https://man.plustar.jp/rust/example/macros/designators.html - [similar]
- Rust By Example 日本語版 9050
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
.3. Path 20.4. ファイル I/O ❱ 20.4.1. open 20.4.2. create 20.4.3. read lines 20.5. 子プロセス ❱ 20.5.1. パイ...
); // FIXME ^ Add the missing argument: "James" // Create a structure named `Structure` which contains an `i...
able(i32); // The `derive` attribute automatically creates the implementation // required to make this `stru...
// Extract the value using tuple indexing, // and create a reference to `vec`. let vec = &self.0; write!(f,...
- https://man.plustar.jp/rust/example/print.html - [similar]
- Tests - Rust By Example 日本語版 7127
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
.3. Path 20.4. ファイル I/O ❱ 20.4.1. open 20.4.2. create 20.4.3. read lines 20.5. 子プロセス ❱ 20.5.1. パイ...
] fn test_file() { // Opens the file ferris.txt or creates one if it doesn't exist. let mut file = OpenOptio...
ns::new() .append(true) .create(true) .open("ferris.txt") .expect("Failed to open...
test_file_also() { // Opens the file ferris.txt or creates one if it doesn't exist. let mut file = OpenOptio...
- https://man.plustar.jp/rust/example/cargo/test.html - [similar]
- ミュータビリティ - Rust By Example 日本語版 7127
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
.3. Path 20.4. ファイル I/O ❱ 20.4.1. open 20.4.2. create 20.4.3. read lines 20.5. 子プロセス ❱ 20.5.1. パイ...
edition", book.title, book.year); } fn main() { // Create an immutable Book named `immutabook` // `immutaboo...
", title: "Gödel, Escher, Bach", year: 1979, }; // Create a mutable copy of `immutabook` and call it `mutabo...
- https://man.plustar.jp/rust/example/scope/borrow/mut.html - [similar]
- テストケース: 連結リスト - Rust By Example 日本語版 6920
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
.3. Path 20.4. ファイル I/O ❱ 20.4.1. open 20.4.2. create 20.4.3. read lines 20.5. 子プロセス ❱ 20.5.1. パイ...
にはメソッドを付与することができる。 impl List { // Create an empty list // 空リストの作成。 fn new() -> List...
}, Nil => { format!("Nil") }, } } } fn main() { // Create an empty linked list // 空の連結リストを作成 let m...
- https://man.plustar.jp/rust/example/custom_types/enum/testcase_linked_list.html - [similar]
- タプル - Rust By Example 日本語版 6920
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
.3. Path 20.4. ファイル I/O ❱ 20.4.1. open 20.4.2. create 20.4.3. read lines 20.5. 子プロセス ❱ 20.5.1. パイ...
"the reversed pair is {:?}", reverse(pair)); // To create one element tuples, the comma is required to tell...
r: {:?}", (5u32)); //tuples can be destructured to create bindings //タプルを分解して別の変数にそれぞれの値を...
- https://man.plustar.jp/rust/example/primitives/tuples.html - [similar]
- RAII - Rust By Example 日本語版 6920
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
.3. Path 20.4. ファイル I/O ❱ 20.4.1. open 20.4.2. create 20.4.3. read lines 20.5. 子プロセス ❱ 20.5.1. パイ...
なるのです!簡単な例で説明しましょう。 // raii.rs fn create_box() { // Allocate an integer on the heap // 整数...
ん手動で開放する必要はないよ! for _ in 0u32..1_000 { create_box(); } // `_box2` is destroyed here, and memory...
- https://man.plustar.jp/rust/example/scope/raii.html - [similar]