pub struct InnerContext {
Show 23 fields pub(crate) blobdir: PathBuf, pub(crate) sql: Sql, pub(crate) smeared_timestamp: SmearedTimestamp, running_state: RwLock<RunningState>, pub(crate) generating_key_mutex: Mutex<()>, pub(crate) oauth2_mutex: Mutex<()>, pub(crate) wrong_pw_warning_mutex: Mutex<()>, pub(crate) translated_stockstrings: StockStrings, pub(crate) events: Events, pub(crate) scheduler: SchedulerState, pub(crate) ratelimit: RwLock<Ratelimit>, pub(crate) quota: RwLock<Option<QuotaInfo>>, pub(crate) resync_request: AtomicBool, pub(crate) new_msgs_notify: Notify, pub(crate) server_id: RwLock<Option<HashMap<String, String>>>, pub(crate) metadata: RwLock<Option<ServerMetadata>>, pub(crate) last_full_folder_scan: Mutex<Option<Time>>, pub(crate) id: u32, creation_time: Time, pub(crate) last_error: RwLock<String>, pub(crate) debug_logging: RwLock<Option<DebugLogging>>, pub(crate) push_subscriber: PushSubscriber, pub(crate) push_subscribed: AtomicBool,
}
Expand description

Actual context, expensive to clone.

Fields§

§blobdir: PathBuf

Blob directory path

§sql: Sql§smeared_timestamp: SmearedTimestamp§running_state: RwLock<RunningState>

The global “ongoing” process state.

This is a global mutex-like state for operations which should be modal in the clients.

§generating_key_mutex: Mutex<()>

Mutex to avoid generating the key for the user more than once.

§oauth2_mutex: Mutex<()>

Mutex to enforce only a single running oauth2 is running.

§wrong_pw_warning_mutex: Mutex<()>

Mutex to prevent a race condition when a “your pw is wrong” warning is sent, resulting in multiple messages being sent.

§translated_stockstrings: StockStrings§events: Events§scheduler: SchedulerState§ratelimit: RwLock<Ratelimit>§quota: RwLock<Option<QuotaInfo>>

Recently loaded quota information, if any. Set to None if quota was never tried to load.

§resync_request: AtomicBool

IMAP UID resync request.

§new_msgs_notify: Notify

Notify about new messages.

This causes Context::wait_next_msgs to wake up.

§server_id: RwLock<Option<HashMap<String, String>>>

Server ID response if ID capability is supported and the server returned non-NIL on the inbox connection. https://datatracker.ietf.org/doc/html/rfc2971

§metadata: RwLock<Option<ServerMetadata>>

IMAP METADATA.

§last_full_folder_scan: Mutex<Option<Time>>§id: u32

ID for this Context in the current process.

This allows for multiple Contexts open in a single process where each context can be identified by this ID.

§creation_time: Time§last_error: RwLock<String>

The text of the last error logged and emitted as an event. If the ui wants to display an error after a failure, last_error should be used to avoid races with the event thread.

§debug_logging: RwLock<Option<DebugLogging>>

If debug logging is enabled, this contains all necessary information

Standard RwLock instead of [tokio::sync::RwLock] is used because the lock is used from synchronous Context::emit_event.

§push_subscriber: PushSubscriber

Push subscriber to store device token and register for heartbeat notifications.

§push_subscribed: AtomicBool

True if account has subscribed to push notifications via IMAP.

Trait Implementations§

source§

impl Debug for InnerContext

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<'a, T, E> AsTaggedExplicit<'a, E> for T
where T: 'a,

§

fn explicit(self, class: Class, tag: u32) -> TaggedParser<'a, Explicit, Self, E>

§

impl<'a, T, E> AsTaggedImplicit<'a, E> for T
where T: 'a,

§

fn implicit( self, class: Class, constructed: bool, tag: u32 ) -> TaggedParser<'a, Implicit, Self, E>

source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

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

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more