検索

phrase: max: clip:
target: order:
Results of 1 - 1 of about 1 for ClosedBox (0.004 sec.)
構造体の場合 - Rust By Example 日本語版 9414
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... つパブリックな構造体 #[allow(dead_code)] pub struct ClosedBox<T> { contents: T, } impl<T> ClosedBox<T> { // A pu ... クタメソッドを持つ構造体 pub fn new(contents: T) -> ClosedBox<T> { ClosedBox { contents: contents, } } } } fn ma ... annot be constructed using field names. // Error! `ClosedBox` has private fields // プライベートなフィールドを持 ... フィールド名を指定することができない。 // エラー!`ClosedBox`にはプライベートな属性が存在します。 //let closed_ ...
https://man.plustar.jp/rust/example/mod/struct_visibility.html - [similar]
PREV 1 NEXT