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

pub struct ThreadView {
    new_cursor_pos: usize,
    cursor_pos: usize,
    expanded_pos: usize,
    new_expanded_pos: usize,
    reversed: bool,
    coordinates: (AccountHash, MailboxHash, usize),
    thread_group: ThreadHash,
    mailview: MailView,
    show_mailview: bool,
    show_thread: bool,
    entries: Vec<ThreadEntry>,
    visible_entries: Vec<Vec<usize>>,
    indentation_colors: [ThemeAttribute; 6],
    use_color: bool,
    movement: Option<PageMovement>,
    dirty: bool,
    content: CellBuffer,
    id: ComponentId,
}

Fields

new_cursor_pos: usizecursor_pos: usizeexpanded_pos: usizenew_expanded_pos: usizereversed: boolcoordinates: (AccountHash, MailboxHash, usize)thread_group: ThreadHashmailview: MailViewshow_mailview: boolshow_thread: boolentries: Vec<ThreadEntry>visible_entries: Vec<Vec<usize>>indentation_colors: [ThemeAttribute; 6]use_color: boolmovement: Option<PageMovement>dirty: boolcontent: CellBufferid: ComponentId

Implementations

impl ThreadView[src]

const DESCRIPTION: &'static str[src]

pub fn new(
    coordinates: (AccountHash, MailboxHash, usize),
    thread_group: ThreadHash,
    expanded_hash: Option<ThreadNodeHash>,
    context: &Context
) -> Self
[src]

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

fn initiate(&mut self, expanded_hash: Option<ThreadNodeHash>, context: &Context)[src]

fn make_entry(
    &mut self,
    i: (usize, ThreadNodeHash, usize),
    msg_hash: EnvelopeHash,
    seen: bool
) -> ThreadEntry
[src]

fn highlight_line(
    &self,
    grid: &mut CellBuffer,
    dest_area: Area,
    src_area: Area,
    idx: usize,
    context: &Context
)
[src]

fn draw_list(
    &mut self,
    grid: &mut CellBuffer,
    area: Area,
    context: &mut Context
)
[src]

draw the list

fn draw_vert(
    &mut self,
    grid: &mut CellBuffer,
    area: Area,
    context: &mut Context
)
[src]

fn draw_horz(
    &mut self,
    grid: &mut CellBuffer,
    area: Area,
    context: &mut Context
)
[src]

fn recalc_visible_entries(&mut self)[src]

fn current_pos(&self) -> usize[src]

Current position in self.entries (not in drawn entries which might exclude nonvisible ones)

Trait Implementations

impl Clone for ThreadView[src]

impl Component for ThreadView[src]

impl Debug for ThreadView[src]

impl Default for ThreadView[src]

impl Display for ThreadView[src]

Auto Trait Implementations

impl !RefUnwindSafe for ThreadView

impl Send for ThreadView

impl Sync for ThreadView

impl Unpin for ThreadView

impl !UnwindSafe for ThreadView

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]