pub struct Facts {
pub spec: String,
pub account: Account,
pub mailbox: String,
pub cache: PathBuf,
pub pending_backfill: Vec<u32>,
}Expand description
What the session knows about the open folder without asking the connection. Cheap, and unchanged while a job is in flight.
Fields§
§spec: Stringimap:account/mailbox, for the status line and the browser.
account: Account§mailbox: String§cache: PathBuf§pending_backfill: Vec<u32>Older UIDs a huge folder left unfetched at open; the session hands them to the background backfill.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Facts
impl RefUnwindSafe for Facts
impl Send for Facts
impl Sync for Facts
impl Unpin for Facts
impl UnsafeUnpin for Facts
impl UnwindSafe for Facts
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more