[][src]Struct termimad::TextView

pub struct TextView<'a, 't> {
    pub show_scrollbar: bool,
    // some fields omitted
}

Fields

show_scrollbar: bool

Methods

impl<'a, 't> TextView<'a, 't>[src]

pub fn from(area: &'a Area, text: &'t FormattedText) -> TextView<'a, 't>[src]

make a displayed text, that is a text in an area

pub fn scrollbar(&self) -> Option<(u16, u16)>[src]

pub fn write(&self) -> Result<()>[src]

display the text in the area, taking the scroll into account.

pub fn try_scroll_lines(&mut self, lines_count: i32)[src]

set the scroll amount. lines_count can be negative

pub fn try_scroll_pages(&mut self, pages_count: i32)[src]

set the scroll amount. lines_count can be negative

Auto Trait Implementations

impl<'a, 't> Send for TextView<'a, 't>

impl<'a, 't> Sync for TextView<'a, 't>

Blanket Implementations

impl<T> From<T> 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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]