[][src]Struct kiro_editor::Screen

pub struct Screen {
    pub rowoff: usize,
    pub coloff: usize,
    pub color_support: ColorSupport,
    // some fields omitted
}

Fields

rowoff: usizecoloff: usizecolor_support: ColorSupport

Methods

impl Screen[src]

pub fn new<I>(input: I) -> Result<Self> where
    I: Iterator<Item = Result<InputSeq>>, 
[src]

pub fn refresh(
    &mut self,
    rows: &[Row],
    file_name: &str,
    modified: bool,
    lang_name: &str,
    cursor: (usize, usize),
    hl: &mut Highlighting
) -> Result<()>
[src]

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

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

pub fn set_dirty_start(&mut self, start: usize)[src]

pub fn maybe_resize<I>(&mut self, input: I) -> Result<bool> where
    I: Iterator<Item = Result<InputSeq>>, 
[src]

pub fn set_info_message<S: Into<String>>(&mut self, message: S)[src]

pub fn set_error_message<S: Into<String>>(&mut self, message: S)[src]

pub fn rows(&self) -> usize[src]

pub fn cols(&self) -> usize[src]

pub fn message_text(&self) -> &str[src]

Auto Trait Implementations

impl Send for Screen

impl Unpin for Screen

impl Sync for Screen

impl UnwindSafe for Screen

impl RefUnwindSafe for Screen

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

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

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