pub struct PagerView<'a> {
pub view: &'a MessageView,
pub rows: &'a RowCache,
pub scroll: usize,
pub full_headers: bool,
pub hide_quoted: bool,
}Expand description
What the pager’s status line needs to know about the open message.
Fields§
§view: &'a MessageView§rows: &'a RowCacheThe front end’s rows for this view: the status line counts them.
scroll: usize§full_headers: bool§hide_quoted: boolAuto Trait Implementations§
impl<'a> !RefUnwindSafe for PagerView<'a>
impl<'a> !Send for PagerView<'a>
impl<'a> !Sync for PagerView<'a>
impl<'a> !UnwindSafe for PagerView<'a>
impl<'a> Freeze for PagerView<'a>
impl<'a> Unpin for PagerView<'a>
impl<'a> UnsafeUnpin for PagerView<'a>
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