[][src]Struct meli::state::Context

pub struct Context {
    pub accounts: IndexMap<AccountHash, Account>,
    pub settings: Settings,
    pub runtime_settings: Settings,
    pub dirty_areas: VecDeque<Area>,
    pub replies: VecDeque<UIEvent>,
    pub sender: Sender<ThreadEvent>,
    receiver: Receiver<ThreadEvent>,
    input_thread: InputHandler,
    pub job_executor: Arc<JobExecutor>,
    pub children: Vec<Child>,
    pub temp_files: Vec<File>,
}

A context container for loaded settings, accounts, UI changes, etc.

Fields

accounts: IndexMap<AccountHash, Account>settings: Settingsruntime_settings: Settingsdirty_areas: VecDeque<Area>

Areas of the screen that must be redrawn in the next render

replies: VecDeque<UIEvent>

Events queue that components send back to the state

sender: Sender<ThreadEvent>receiver: Receiver<ThreadEvent>input_thread: InputHandlerjob_executor: Arc<JobExecutor>children: Vec<Child>temp_files: Vec<File>

Implementations

impl Context[src]

pub fn replies(&mut self) -> SmallVec<[UIEvent; 8]>[src]

pub fn input_kill(&self)[src]

pub fn restore_input(&mut self)[src]

pub fn is_online_idx(&mut self, account_pos: usize) -> Result<()>[src]

pub fn is_online(&mut self, account_hash: AccountHash) -> Result<()>[src]

Auto Trait Implementations

impl !RefUnwindSafe for Context

impl !Send for Context

impl !Sync for Context

impl Unpin for Context

impl !UnwindSafe for Context

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]