aatxe / irc

the irc crate – usable, async IRC for Rust
Mozilla Public License 2.0
528 stars 97 forks source link

Add 'Send' bound for PackedClient client future. #157

Closed theduke closed 5 years ago

theduke commented 5 years ago

The Future is Send anyway, but this bound on the Box is neccessary to use the future across threads because the compiler can't figure out the Send bound otherwise.

aatxe commented 5 years ago

Thanks, looks good to me!