diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2022-06-03 17:37:39 +0200 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2022-06-03 17:37:39 +0200 |
commit | e950931c5f145c05353aa377f99fb2daac37d044 (patch) | |
tree | 2c7fd58299432853ec905cd5f7a2ab7376de5fba /src/instance.rs | |
parent | 3589b0fa4b290ebbe416d793b9f82673754ab6f9 (diff) | |
download | aerogramme-e950931c5f145c05353aa377f99fb2daac37d044.tar.gz aerogramme-e950931c5f145c05353aa377f99fb2daac37d044.zip |
Run cargo fmt
Diffstat (limited to 'src/instance.rs')
-rw-r--r-- | src/instance.rs | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/src/instance.rs b/src/instance.rs index cb0468f..6e11be5 100644 --- a/src/instance.rs +++ b/src/instance.rs @@ -10,12 +10,12 @@ use crate::connection::Connection; use crate::mailstore::Mailstore; pub struct Instance { - pub mailstore: Arc<Mailstore> + pub mailstore: Arc<Mailstore>, } impl Instance { - pub fn new(mailstore: Arc<Mailstore>) -> Self { - Self { mailstore } - } + pub fn new(mailstore: Arc<Mailstore>) -> Self { + Self { mailstore } + } } impl<'a> Service<&'a AddrStream> for Instance { type Response = Connection; @@ -29,10 +29,6 @@ impl<'a> Service<&'a AddrStream> for Instance { fn call(&mut self, addr: &'a AddrStream) -> Self::Future { tracing::info!(remote_addr = %addr.remote_addr, local_addr = %addr.local_addr, "accept"); let ms = self.mailstore.clone(); - Box::pin(async { - Ok(Connection::new(ms)) - }) + Box::pin(async { Ok(Connection::new(ms)) }) } } - - |