diff options
author | Alex Auvolat <alex@adnab.me> | 2022-06-30 14:02:57 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2022-06-30 14:03:12 +0200 |
commit | b15026ec9ca2045f7ddb21a759cb075bb1dbd014 (patch) | |
tree | 3caab71bf46f299df407b447be46398967a3c68d /src/imap/command/examined.rs | |
parent | 89b588338700d13e34b50836cb790c0e0d588a28 (diff) | |
download | aerogramme-b15026ec9ca2045f7ddb21a759cb075bb1dbd014.tar.gz aerogramme-b15026ec9ca2045f7ddb21a759cb075bb1dbd014.zip |
Refactor user to be shared using Arc
Diffstat (limited to 'src/imap/command/examined.rs')
-rw-r--r-- | src/imap/command/examined.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/imap/command/examined.rs b/src/imap/command/examined.rs index aad7874..91ad950 100644 --- a/src/imap/command/examined.rs +++ b/src/imap/command/examined.rs @@ -1,3 +1,5 @@ +use std::sync::Arc; + use anyhow::Result; use boitalettres::proto::Request; use boitalettres::proto::Response; @@ -15,7 +17,7 @@ use crate::mail::user::User; pub struct ExaminedContext<'a> { pub req: &'a Request, - pub user: &'a User, + pub user: &'a Arc<User>, pub mailbox: &'a mut MailboxView, } |