rust rust学习笔记(泛型) 学习内容来自B站:原子之音 泛型结构体12345678910111213141516171819#[derive(Debug)]struct Rectangle<T,V> { width: T, ...