BiagioFesta / wtransport

Async-friendly WebTransport implementation in Rust
Apache License 2.0
471 stars 31 forks source link

`SendStream::stopped` requires move #175

Closed kyori19 closed 3 months ago

kyori19 commented 7 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.