pw: channel: always impl Clone for Sender
derive(Clone) would not impl Clone
for Sender<T>
where T
is not Clone
, despite Sender<T>
holds only Arc
and is safely cloneable.
So just manually impl Clone
for Sender
.
Due to an influx of spam, we have had to impose restrictions on new accounts. Please see this wiki page for instructions on how to get full permissions. Sorry for the inconvenience.
derive(Clone) would not impl Clone
for Sender<T>
where T
is not Clone
, despite Sender<T>
holds only Arc
and is safely cloneable.
So just manually impl Clone
for Sender
.