pub trait TypeErasableCmd { }
Expand description

A alternate version of Cmd which is object safe but has methods which can panic if misused.

This is just an helper to create BoxedCmd, i.e. a way to circumvent to object safety problems of Cmd without introducing any additional caused of panics, or errors as long an non of the methods of this trait are used directly. So just ignore this trait

Implementors§