Run rustfmt

This commit is contained in:
Dominik Nakamura 2022-05-21 21:36:38 +09:00
parent 9adb162f56
commit 2489ab49c0
No known key found for this signature in database
GPG Key ID: E4C6A749B2491910
2 changed files with 2 additions and 3 deletions

View File

@ -5,13 +5,12 @@ use tokio::sync::{oneshot, Mutex};
use tokio_tungstenite::tungstenite::Message;
use tracing::debug;
use super::InnerError;
use crate::{
requests::{ClientRequest, EventSubscription, Identify},
responses::{Hello, Identified, RequestResponse, ServerMessage, Status},
};
use super::InnerError;
/// Wrapper for the list of ongoing requests that wait for response.
#[derive(Default)]
pub(super) struct ReceiverList(Mutex<HashMap<u64, oneshot::Sender<(Status, serde_json::Value)>>>);