Struct kiro_editor::Screen [−][src]
Fields
cursor_moved: boolrowoff: usizecoloff: usizeImplementations
impl<W: Write> Screen<W>[src]
pub fn new<I>(
size: Option<(usize, usize)>,
input: I,
mut output: W
) -> Result<Self> where
I: Iterator<Item = Result<InputSeq>>, [src]
size: Option<(usize, usize)>,
input: I,
mut output: W
) -> Result<Self> where
I: Iterator<Item = Result<InputSeq>>,
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]
&mut self,
buf: &TextBuffer,
hl: &mut Highlighting,
status_bar: &StatusBar
) -> Result<()>
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]
I: Iterator<Item = Result<InputSeq>>,
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
Auto Trait Implementations
impl<W> RefUnwindSafe for Screen<W> where
W: RefUnwindSafe, [src]
W: RefUnwindSafe,
impl<W> Send for Screen<W> where
W: Send, [src]
W: Send,
impl<W> Sync for Screen<W> where
W: Sync, [src]
W: Sync,
impl<W> Unpin for Screen<W> where
W: Unpin, [src]
W: Unpin,
impl<W> UnwindSafe for Screen<W> where
W: UnwindSafe, [src]
W: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,