aboutsummaryrefslogtreecommitdiff
path: root/src/imap/command/selected.rs
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2022-06-30 14:02:57 +0200
committerAlex Auvolat <alex@adnab.me>2022-06-30 14:03:12 +0200
commitb15026ec9ca2045f7ddb21a759cb075bb1dbd014 (patch)
tree3caab71bf46f299df407b447be46398967a3c68d /src/imap/command/selected.rs
parent89b588338700d13e34b50836cb790c0e0d588a28 (diff)
downloadaerogramme-b15026ec9ca2045f7ddb21a759cb075bb1dbd014.tar.gz
aerogramme-b15026ec9ca2045f7ddb21a759cb075bb1dbd014.zip
Refactor user to be shared using Arc
Diffstat (limited to 'src/imap/command/selected.rs')
-rw-r--r--src/imap/command/selected.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/imap/command/selected.rs b/src/imap/command/selected.rs
index a447a49..bb78cbd 100644
--- a/src/imap/command/selected.rs
+++ b/src/imap/command/selected.rs
@@ -1,3 +1,5 @@
+use std::sync::Arc;
+
use anyhow::Result;
use boitalettres::proto::Request;
use boitalettres::proto::Response;
@@ -16,7 +18,7 @@ use crate::mail::user::User;
pub struct SelectedContext<'a> {
pub req: &'a Request,
- pub user: &'a User,
+ pub user: &'a Arc<User>,
pub mailbox: &'a mut MailboxView,
}