1 2 3 4 5 6 7 8
use super::Spreadsheet; use std::fmt; impl fmt::Display for Spreadsheet { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "total_rows: {}", self.rows.len()) } }