chore(cbus): manual implement `Clone` trait for `unbound::Sender` instead of derive
Previously ubound::Sender<T>
implement Clone
trait with derive macro. This forces user implement Clone
for T as well, but thereis no need in it. This patch fix it by implement Clone manualy.