pub trait WriteStr<T> {
// Required method
fn write_str(&mut self, target: T) -> Result<()>;
}Expand description
A generic write method for a specific type.
pub trait WriteStr<T> {
// Required method
fn write_str(&mut self, target: T) -> Result<()>;
}A generic write method for a specific type.