検索

phrase: max: clip:
target: order:
Results of 1 - 2 of about 2 for lon (0.008 sec.)
フォーマット - Rust By Example 日本語版 11228
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... me: &'static str, // Latitude // 緯度 lat: f32, // Longitude // 経度 lon: f32, } impl Display for City { ... t_c = if self.lat >= 0.0 { 'N' } else { 'S' }; let lon_c = if self.lon >= 0.0 { 'E' } else { 'W' }; // `w ... {:.3}°{}", self.name, self.lat.abs(), lat_c, self.lon.abs(), lon_c) } } #[derive(Debug)] struct Color { ... r city in [ City { name: "Dublin", lat: 53.347778, lon: -6.259722 }, City { name: "Oslo", lat: 59.95, lon ...
https://man.plustar.jp/rust/example/hello/print/fmt.html - [similar]
Rust By Example 日本語版 7485
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... ks the same way. This is a bit more verbose and no longer recommended, but you may still see it in older ... me: &'static str, // Latitude // 緯度 lat: f32, // Longitude // 経度 lon: f32, } impl Display for City { ... t_c = if self.lat >= 0.0 { 'N' } else { 'S' }; let lon_c = if self.lon >= 0.0 { 'E' } else { 'W' }; // `w ... {:.3}°{}", self.name, self.lat.abs(), lat_c, self.lon.abs(), lon_c) } } #[derive(Debug)] struct Color { ...
https://man.plustar.jp/rust/example/print.html - [similar]
PREV 1 NEXT