Struct kiro_editor::Screen[][src]

pub struct Screen<W: Write> {
    pub cursor_moved: bool,
    pub rowoff: usize,
    pub coloff: usize,
    // some fields omitted
}

Fields

cursor_moved: boolrowoff: usizecoloff: usize

Implementations

impl<W: Write> Screen<W>[src]

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

pub fn render_welcome(&mut self, status_bar: &StatusBar) -> Result<()>[src]

pub fn render(
    &mut self,
    buf: &TextBuffer,
    hl: &mut Highlighting,
    status_bar: &StatusBar
) -> Result<()>
[src]

pub fn render_help(&mut 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 unset_message(&mut self)[src]

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

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

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

pub fn force_set_cursor(&mut self, row: usize, col: usize) -> Result<()>[src]

Trait Implementations

impl<W: Write> Drop for Screen<W>[src]

Auto Trait Implementations

impl<W> RefUnwindSafe for Screen<W> where
    W: RefUnwindSafe

impl<W> Send for Screen<W> where
    W: Send

impl<W> Sync for Screen<W> where
    W: Sync

impl<W> Unpin for Screen<W> where
    W: Unpin

impl<W> UnwindSafe for Screen<W> where
    W: UnwindSafe

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, 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.