send — async send. try_send — immediate send.
send:
try_send:
1use tokio::sync::mpsc;23let (tx, mut rx) = mpsc::channel(32);45// Async send6tx.send("hello").await.unwrap();78// Immediate send9let result = tx.try_send("hello");10if let Err(e) = result {11 println!("Channel full: {}", e);12}
Key: send for async, try_send for non-blocking.