[][src]Struct meli::components::mail::view::envelope::EnvelopeView

pub struct EnvelopeView {
    pager: Option<Pager>,
    subview: Option<Box<dyn Component>>,
    dirty: bool,
    mode: ViewMode,
    mail: Mail,
    account_hash: AccountHash,
    cmd_buf: String,
    id: ComponentId,
}

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

Fields

pager: Option<Pager>subview: Option<Box<dyn Component>>dirty: boolmode: ViewModemail: Mailaccount_hash: AccountHashcmd_buf: Stringid: ComponentId

Implementations

impl EnvelopeView[src]

pub fn new(
    mail: Mail,
    pager: Option<Pager>,
    subview: Option<Box<dyn Component>>,
    account_hash: AccountHash
) -> Self
[src]

fn attachment_to_text(&self, body: &Attachment, context: &mut Context) -> String[src]

Returns the string to be displayed in the Viewer

Trait Implementations

impl Component for EnvelopeView[src]

impl Debug for EnvelopeView[src]

impl Display for EnvelopeView[src]

Auto Trait Implementations

impl !RefUnwindSafe for EnvelopeView

impl Send for EnvelopeView

impl Sync for EnvelopeView

impl Unpin for EnvelopeView

impl !UnwindSafe for EnvelopeView

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> 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]