Struct rushell_deps_linefeed::memory::MemoryTerminal[][src]

pub struct MemoryTerminal { /* fields omitted */ }

Implements an in-memory Terminal interface

The contents of a MemoryTerminal are shared. That is, cloning a MemoryTerminal value will share the contained terminal buffer.

Implementations

impl MemoryTerminal[src]

pub fn new() -> MemoryTerminal[src]

Returns a new MemoryTerminal with the default buffer size.

pub fn with_size(size: Size) -> MemoryTerminal[src]

Returns a new MemoryTerminal with the given buffer size.

Panics

If either of the lines or columns fields are 0.

pub fn clear_all(&self)[src]

Clears the terminal buffer and places the cursor at (0, 0).

pub fn clear_to_end(&self)[src]

Clears all characters beginning at the cursor and ending at buffer end.

pub fn clear_input(&self)[src]

Clears the input buffer.

pub fn has_input(&self) -> bool[src]

Returns whether any input remains to be read.

pub fn lines(&self) -> Lines<'_>[src]

Returns an iterator over lines in the buffer.

Notes

The returned iterator immutably borrows the contents of the MemoryTerminal. Attempting to perform a mutating operation on the parent MemoryTerminal while the Lines iterator lives will cause a panic.

pub fn move_up(&self, n: usize)[src]

Moves the cursor up n cells.

pub fn move_down(&self, n: usize)[src]

Moves the cursor down n cells.

pub fn move_left(&self, n: usize)[src]

Moves the cursor left n cells.

pub fn move_right(&self, n: usize)[src]

Moves the cursor right n cells.

pub fn move_to_first_column(&self)[src]

Moves the cursor to the first column of the current line.

pub fn push_input(&self, s: &str)[src]

Pushes a character sequence to the back of the input queue.

pub fn read_input(&self, buf: &mut [u8]) -> usize[src]

Reads some input from the input buffer.

pub fn resize(&self, new_size: Size)[src]

Changes the size of the terminal buffer. The buffer will be truncated or filled with spaces, as necessary.

Panics

If either of the lines or columns fields are 0 or if the area exceeds usize maximum.

pub fn scroll_up(&self, n: usize)[src]

Moves the contents of the buffer up n lines. The first n lines of text will be erased.

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

Returns the (line, column) position of the cursor.

pub fn set_cursor_mode(&self, mode: CursorMode)[src]

Sets the cursor mode.

pub fn cursor_mode(&self) -> CursorMode[src]

Returns the cursor mode.

pub fn size(&self) -> Size[src]

Returns the size of the terminal buffer.

pub fn write(&self, s: &str)[src]

Writes some text into the buffer.

If the text extends beyond the length of the current line without a newline character ('\n'), the extraneous text will be dropped.

Trait Implementations

impl Clone for MemoryTerminal[src]

fn clone(&self) -> MemoryTerminal[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for MemoryTerminal[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Default for MemoryTerminal[src]

fn default() -> MemoryTerminal[src]

Returns the “default value” for a type. Read more

impl Terminal for MemoryTerminal[src]

type PrepareState = ()

Returned by prepare; passed to restore to restore state.

fn name(&self) -> &str[src]

Returns the name of the terminal.

fn lock_read<'a>(&'a self) -> Box<dyn TerminalReader<Self> + 'a>[src]

Acquires a lock on terminal read operations and returns a value holding that lock and granting access to such operations. Read more

fn lock_write<'a>(&'a self) -> Box<dyn TerminalWriter<Self> + 'a>[src]

Acquires a lock on terminal write operations and returns a value holding that lock and granting access to such operations. Read more

impl<'a> TerminalReader<MemoryTerminal> for MemoryReadGuard<'a>[src]

fn wait_for_input(&mut self, _timeout: Option<Duration>) -> Result<bool>[src]

Waits timeout for user input. If timeout is None, waits indefinitely. Read more

fn prepare(
    &mut self,
    _block_signals: bool,
    _report_signals: SignalSet
) -> Result<()>
[src]

Prepares the terminal for line reading and editing operations. Read more

unsafe fn prepare_with_lock(
    &mut self,
    _lock: &mut dyn TerminalWriter<MemoryTerminal>,
    _block_signals: bool,
    _report_signals: SignalSet
) -> Result<()>
[src]

Like prepare, but called when the write lock is already held. Read more

fn restore(&mut self, _state: ()) -> Result<()>[src]

Restores the terminal state using the given state data.

unsafe fn restore_with_lock(
    &mut self,
    _lock: &mut dyn TerminalWriter<MemoryTerminal>,
    _state: ()
) -> Result<()>
[src]

Like restore, but called when the write lock is already held. Read more

fn read(&mut self, buf: &mut Vec<u8>) -> Result<RawRead>[src]

Reads some input from the terminal and appends it to the given buffer.

impl<'a> TerminalWriter<MemoryTerminal> for MemoryWriteGuard<'a>[src]

fn size(&self) -> Result<Size>[src]

Returns the size of the terminal window

fn clear_screen(&mut self) -> Result<()>[src]

Presents a clear terminal screen, with cursor at first row, first column. Read more

fn clear_to_screen_end(&mut self) -> Result<()>[src]

Clears characters on the line occupied by the cursor, beginning with the cursor and ending at the end of the line. Also clears all characters on all lines after the cursor. Read more

fn move_up(&mut self, n: usize) -> Result<()>[src]

Moves the cursor up n cells; n may be zero.

fn move_down(&mut self, n: usize) -> Result<()>[src]

Moves the cursor down n cells; n may be zero.

fn move_left(&mut self, n: usize) -> Result<()>[src]

Moves the cursor left n cells; n may be zero.

fn move_right(&mut self, n: usize) -> Result<()>[src]

Moves the cursor right n cells; n may be zero.

fn move_to_first_column(&mut self) -> Result<()>[src]

Moves the cursor to the first column of the current line

fn set_cursor_mode(&mut self, mode: CursorMode) -> Result<()>[src]

Set the current cursor mode

fn write(&mut self, s: &str) -> Result<()>[src]

Writes output to the terminal. Read more

fn flush(&mut self) -> Result<()>[src]

Flushes any currently buffered output data. Read more

Auto Trait Implementations

Blanket Implementations

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

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

Creates owned data from borrowed data, usually by cloning. Read more

pub fn clone_into(&self, target: &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

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.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.