検索
Results of 1 - 10 of about 11 for bytes (0.007 sec.)
- リテラル - Rust By Example 日本語版 12945
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...// `size_of_val` returns the size of a variable in bytes // `size_of_val` 関数は変数のサイズをバイトで返す。...println!("size of `x` in bytes: {}", std::mem::size_of_val(&x)); println!("size o...f `y` in bytes: {}", std::mem::size_of_val(&y)); println!("size o...f `z` in bytes: {}", std::mem::size_of_val(&z)); println!("size o... - https://man.plustar.jp/rust/example/types/literals.html - [similar]
- Box, スタックとヒープ - Rust By Example 日本語版 11842
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...::new(boxed_origin()); println!("Point occupies {} bytes on the stack", mem::size_of_val(&point)); println!...("Rectangle occupies {} bytes on the stack", mem::size_of_val(&rectangle)); // b...タのサイズに等しい println!("Boxed point occupies {} bytes on the stack", mem::size_of_val(&boxed_point)); pr...intln!("Boxed rectangle occupies {} bytes on the stack", mem::size_of_val(&boxed_rectangle))... - https://man.plustar.jp/rust/example/std/box.html - [similar]
- 文字列 - Rust By Example 日本語版 9655
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...write. Similarly there are multiple ways to write byte string literals, which all result in &[u8; N] . Gen...'\'' . fn main() { // You can use escapes to write bytes by their hexadecimal values... let byte_escape = "...ust be valid UTF-8). Or maybe you want an array of bytes that's mostly text? Byte strings to the rescue! us...) { // Note that this is not actually a `&str` let bytestring: &[u8; 21] = b"this is a byte string"; // Byt... - https://man.plustar.jp/rust/example/std/str.html - [similar]
- Tests - Rust By Example 日本語版 8375
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...imes. for _ in 0..5 { file.write_all("Ferris\n".as_bytes()) .expect("Could not write to ferris.txt"); } } /...times. for _ in 0..5 { file.write_all("Corro\n".as_bytes()) .expect("Could not write to ferris.txt"); } } }... - https://man.plustar.jp/rust/example/cargo/test.html - [similar]
- RAII - Rust By Example 日本語版 8375
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...=26873== HEAP SUMMARY: ==26873== in use at exit: 0 bytes in 0 blocks ==26873== total heap usage: 1,013 allo...cs, 1,013 frees, 8,696 bytes allocated ==26873== ==26873== All heap blocks were... - https://man.plustar.jp/rust/example/scope/raii.html - [similar]
- panic! - Rust By Example 日本語版 8375
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...==4401== HEAP SUMMARY: ==4401== in use at exit: 0 bytes in 0 blocks ==4401== total heap usage: 18 allocs,...18 frees, 1,648 bytes allocated ==4401== ==4401== All heap blocks were f... - https://man.plustar.jp/rust/example/std/panic.html - [similar]
- Rust By Example 日本語版 8179
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...列はスタック上に置かれる println!("array occupies {} bytes", mem::size_of_val(&xs)); // Arrays can be automat...// `size_of_val` returns the size of a variable in bytes // `size_of_val` 関数は変数のサイズをバイトで返す。...println!("size of `x` in bytes: {}", std::mem::size_of_val(&x)); println!("size o...f `y` in bytes: {}", std::mem::size_of_val(&y)); println!("size o... - https://man.plustar.jp/rust/example/print.html - [similar]
- create - Rust By Example 日本語版 7628
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...o::Result<()>` match file.write_all(LOREM_IPSUM.as_bytes()) { Err(why) => panic!("couldn't write to {}: {}"... - https://man.plustar.jp/rust/example/std_misc/file/create.html - [similar]
- 配列とスライス - Rust By Example 日本語版 7450
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...列はスタック上に置かれる println!("array occupies {} bytes", mem::size_of_val(&xs)); // Arrays can be automat... - https://man.plustar.jp/rust/example/primitives/array.html - [similar]
- ファイルシステムとのやり取り - Rust By Example 日本語版 7450
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...let mut f = File::create(path)?; f.write_all(s.as_bytes()) } // A simple implementation of `% touch path`... - https://man.plustar.jp/rust/example/std_misc/fs.html - [similar]