actix-extras
actix-extras copied to clipboard
In actix-ws v0.3.0 Crates.io, that example is wrong!
""" actix_web::rt::spawn(async move { while let Some(Ok(msg)) = msg_stream.next().await { """
Now we don't use .next() but .recv() .
.next() is from the StreamExt trait, but you're right that the import of it isn't shown on the README