検索
Results of 1 - 3 of about 3 for Inches (0.012 sec.)
- 継承(Derive) - Rust By Example 日本語版 11719
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
rtialEq, PartialOrd)] struct Centimeters(f64); // `Inches`, a tuple struct that can be printed // `Inches`は...
プリント可能なタプルになる #[derive(Debug)] struct Inches(i32); impl Inches { fn to_centimeters(&self) -> Ce...
ntimeters { let &Inches(inches) = self; Centimeters(inches as f64 * 2.54)...
DO ^ この行をアンコメントしてみましょう let foot = Inches(12); println!("One foot equals {:?}", foot); let m...
- https://man.plustar.jp/rust/example/trait/derive.html - [similar]
- エイリアス - Rust By Example 日本語版 8966
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
64`. let nanoseconds: NanoSecond = 5 as u64_t; let inches: Inch = 2 as u64_t; // Note that type aliases *don...
ではない** からです。 println!("{} nanoseconds + {} inches = {} unit?", nanoseconds, inches, nanoseconds + in...
- https://man.plustar.jp/rust/example/types/alias.html - [similar]
- Rust By Example 日本語版 7180
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
64`. let nanoseconds: NanoSecond = 5 as u64_t; let inches: Inch = 2 as u64_t; // Note that type aliases *don...
ではない** からです。 println!("{} nanoseconds + {} inches = {} unit?", nanoseconds, inches, nanoseconds + in...
- https://man.plustar.jp/rust/example/print.html - [similar]
PREV
1
NEXT