[][src]Struct melib::backends::jmap::Store

pub struct Store {
    pub account_name: Arc<String>,
    pub account_hash: AccountHash,
    pub account_id: Arc<Mutex<Id<Account>>>,
    pub byte_cache: Arc<Mutex<HashMap<EnvelopeHash, EnvelopeCache>>>,
    pub id_store: Arc<Mutex<HashMap<EnvelopeHash, Id<EmailObject>>>>,
    pub reverse_id_store: Arc<Mutex<HashMap<Id<EmailObject>, EnvelopeHash>>>,
    pub blob_id_store: Arc<Mutex<HashMap<EnvelopeHash, Id<BlobObject>>>>,
    pub tag_index: Arc<RwLock<BTreeMap<u64, String>>>,
    pub mailboxes: Arc<RwLock<HashMap<MailboxHash, JmapMailbox>>>,
    pub mailboxes_index: Arc<RwLock<HashMap<MailboxHash, HashSet<EnvelopeHash>>>>,
    pub mailbox_state: Arc<Mutex<State<MailboxObject>>>,
    pub online_status: Arc<FutureMutex<(Instant, Result<()>)>>,
    pub is_subscribed: Arc<IsSubscribedFn>,
    pub event_consumer: BackendEventConsumer,
}

Fields

account_name: Arc<String>account_hash: AccountHashaccount_id: Arc<Mutex<Id<Account>>>byte_cache: Arc<Mutex<HashMap<EnvelopeHash, EnvelopeCache>>>id_store: Arc<Mutex<HashMap<EnvelopeHash, Id<EmailObject>>>>reverse_id_store: Arc<Mutex<HashMap<Id<EmailObject>, EnvelopeHash>>>blob_id_store: Arc<Mutex<HashMap<EnvelopeHash, Id<BlobObject>>>>tag_index: Arc<RwLock<BTreeMap<u64, String>>>mailboxes: Arc<RwLock<HashMap<MailboxHash, JmapMailbox>>>mailboxes_index: Arc<RwLock<HashMap<MailboxHash, HashSet<EnvelopeHash>>>>mailbox_state: Arc<Mutex<State<MailboxObject>>>online_status: Arc<FutureMutex<(Instant, Result<()>)>>is_subscribed: Arc<IsSubscribedFn>event_consumer: BackendEventConsumer

Implementations

impl Store[src]

pub fn add_envelope(&self, obj: EmailObject) -> Envelope[src]

pub fn remove_envelope(
    &self,
    obj_id: Id<EmailObject>
) -> Option<(EnvelopeHash, SmallVec<[MailboxHash; 8]>)>
[src]

Trait Implementations

impl Debug for Store[src]

Auto Trait Implementations

impl !RefUnwindSafe for Store

impl Send for Store

impl Sync for Store

impl Unpin for Store

impl !UnwindSafe for Store

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]