BiagioFesta / wtransport

Async-friendly WebTransport implementation in Rust
Apache License 2.0
402 stars 27 forks source link

`SendStream::stopped` requires move #175

Closed kyori19 closed 1 month ago

kyori19 commented 5 months ago

In WTransport, SendStream::stopped is defined as stopped(self) while Quinn defined it as stopped(&mut self). I think it can be safely changed to &mut self.