pub trait StringWrite: ErrorType { // Required method fn write_string( &mut self, data: &str, ) -> (usize, Result<(), <Self as ErrorType>::Error>); }