[rust整理筆記]rust操作小技巧

#![allow(dead_code)] #[derive(Debug)] struct Soo{ x:i32, y:i32 } fn main() { // 1.print 調試 let s0 = Soo{x:12,y:30}; // 通過 .. 操作符後面跟着這個結構體的另一個實例 let s = Soo{x:12,..s0}; // 打印結構體 pri
相關文章
相關標籤/搜索