[][src]Struct meli::components::mail::view::MailView

pub struct MailView {
    coordinates: (AccountHash, MailboxHash, EnvelopeHash),
    pager: Pager,
    subview: Option<Box<dyn Component>>,
    dirty: bool,
    initialised: bool,
    mode: ViewMode,
    expand_headers: bool,
    attachment_tree: String,
    attachment_paths: Vec<Vec<usize>>,
    headers_no: usize,
    headers_cursor: usize,
    force_draw_headers: bool,
    theme_default: ThemeAttribute,
    active_jobs: HashSet<JobId>,
    state: MailViewState,
    cmd_buf: String,
    id: ComponentId,
}

Contains an Envelope view, with sticky headers, a pager for the body, and subviews for more menus

Fields

coordinates: (AccountHash, MailboxHash, EnvelopeHash)pager: Pagersubview: Option<Box<dyn Component>>dirty: boolinitialised: boolmode: ViewModeexpand_headers: boolattachment_tree: Stringattachment_paths: Vec<Vec<usize>>headers_no: usizeheaders_cursor: usizeforce_draw_headers: booltheme_default: ThemeAttributeactive_jobs: HashSet<JobId>state: MailViewStatecmd_buf: Stringid: ComponentId

Implementations

impl MailView[src]

const DESCRIPTION: &'static str[src]

pub fn new(
    coordinates: (AccountHash, MailboxHash, EnvelopeHash),
    pager: Option<Pager>,
    subview: Option<Box<dyn Component>>,
    context: &mut Context
) -> Self
[src]

fn init_futures(&mut self, context: &mut Context)[src]

fn perform_action(&mut self, action: PendingReplyAction, context: &mut Context)[src]

fn attachment_displays_to_text(
    &self,
    displays: &[AttachmentDisplay],
    context: &mut Context,
    show_comments: bool
) -> String
[src]

fn attachment_displays_to_tree(
    &self,
    displays: &[AttachmentDisplay]
) -> (Vec<Vec<usize>>, String)
[src]

fn attachment_to(
    body: &Attachment,
    context: &mut Context,
    coordinates: (AccountHash, MailboxHash, EnvelopeHash),
    active_jobs: &mut HashSet<JobId>
) -> Vec<AttachmentDisplay>
[src]

pub fn update(
    &mut self,
    new_coordinates: (AccountHash, MailboxHash, EnvelopeHash),
    context: &mut Context
)
[src]

fn open_attachment(
    &self,
    lidx: usize,
    context: &mut Context
) -> Option<&Attachment>
[src]

Trait Implementations

impl Clone for MailView[src]

impl Component for MailView[src]

impl Debug for MailView[src]

impl Default for MailView[src]

impl Display for MailView[src]

Auto Trait Implementations

impl !RefUnwindSafe for MailView

impl Send for MailView

impl Sync for MailView

impl Unpin for MailView

impl !UnwindSafe for MailView

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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]