検索

phrase: max: clip:
target: order:
Results of 1 - 1 of about 1 for MyBox (0.004 sec.)
Derefトレイトでスマートポインタを普通の参照のように扱う - Rust 日本語版 9414
The Rust Programming Language 日本語版 まえがき はじめに 1. 事始め 1.1. インストール 1.2. Hello, ... ような定義になります。なのでリスト15-8ではそのように MyBox<T> 型を定義しています。 また、 Box<T> に定義された ... : src/main.rs #![allow(unused)] fn main() { struct MyBox<T>(T); impl<T> MyBox<T> { fn new(x: T) -> MyBox<T> ... { MyBox(x) } } } リスト15-8: MyBox<T> 型を定義する MyBox... ています。この型にどんな型の値も持たせたいからです。 MyBox 型は型 T の要素を1つ持つタプル構造体です。 MyBox:: ...
https://man.plustar.jp/rust/book/ch15-02-deref.html - [similar]
PREV 1 NEXT