#[derive(Clone, Copy)] struct MyRef<'a,T>(&'a T); fn main() { // v is not Copy, but &v is let v : Vec<()> = Vec::new(); // _r1 = &v; would compile let _r1 ...
確定! 回上一頁