std::net — blocking networking. tokio::net — async networking.
std::net:
tokio::net:
1// Blocking2use std::net::TcpListener;3let listener = TcpListener::bind("127.0.0.1:8080")?;45// Async6use tokio::net::TcpListener;7let listener = TcpListener::bind("127.0.0.1:8080").await?;
Key: std::net for blocking, tokio::net for async.