pub trait Extend<I: ?Sized> { // Required method fn extend(&mut self, iterable: I) -> Result<(), String>; }
Helper trait which allows to implement extend method.
Extends the program with some object depends to realization.