pub trait Echo { // Required method fn echo(&mut self, echo: &String) -> String; }
| Simple string echoing interface for | testing. |
| Echo provided string. |