mirror of
https://github.com/actix/examples
synced 2024-11-27 16:02:57 +01:00
clippy
This commit is contained in:
parent
c557986915
commit
522e3d11e2
@ -112,7 +112,7 @@ impl ChatServer {
|
|||||||
.iter()
|
.iter()
|
||||||
.find_map(|(room, participants)| participants.contains(&conn).then_some(room))
|
.find_map(|(room, participants)| participants.contains(&conn).then_some(room))
|
||||||
{
|
{
|
||||||
self.send_system_message(&room, conn, msg).await;
|
self.send_system_message(room, conn, msg).await;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -195,12 +195,7 @@ impl ChatServer {
|
|||||||
}
|
}
|
||||||
|
|
||||||
pub async fn run(mut self) -> io::Result<()> {
|
pub async fn run(mut self) -> io::Result<()> {
|
||||||
loop {
|
while let Some(cmd) = self.cmd_rx.recv().await {
|
||||||
let cmd = match self.cmd_rx.recv().await {
|
|
||||||
Some(cmd) => cmd,
|
|
||||||
None => break,
|
|
||||||
};
|
|
||||||
|
|
||||||
match cmd {
|
match cmd {
|
||||||
Command::Connect { conn_tx, res_tx } => {
|
Command::Connect { conn_tx, res_tx } => {
|
||||||
let conn_id = self.connect(conn_tx).await;
|
let conn_id = self.connect(conn_tx).await;
|
||||||
|
Loading…
Reference in New Issue
Block a user