如何輸出結構體

喜爱糖葫芦發表於2024-07-15

提問

如何輸出結構體

回答

  1. 給結構體增加特性

[derive(Debug)]

  1. 使用{:?}列印 不換行
  2. 使用{#:?} 列印 換行
  3. 使用dbg!(&rect1);

參考

https://course.rs/basic/compound-type/struct.html

相關文章