pub trait WithMaxLengthString { // Required methods fn with_max_length(&self, max: usize) -> String; fn last_n(&self, n: usize) -> String; }