Struct console::Term[][src]

pub struct Term { /* fields omitted */ }

Abstraction around a terminal.

Methods

impl Term
[src]

Important traits for Term

Return a new unbuffered terminal

Important traits for Term

Return a new unbuffered terminal to stderr

Important traits for Term

Return a new buffered terminal

Important traits for Term

Return a new buffered terminal to stderr

Returns the targert

Writes a string to the terminal and adds a newline.

Read a single character from the terminal

This does not echo the character and blocks until a single character is entered.

Read a single key form the terminal.

This does not echo anything. If the terminal is not user attended the return value will always be the unknown key.

Read one line of input.

This does not include the trailing newline. If the terminal is not user attended the return value will always be an empty string.

Read securely a line of input.

This is similar to read_line but will not echo the output. This also switches the terminal into a different mode where not all characters might be accepted.

Flushes internal buffers.

This forces the contents of the internal buffer to be written to the terminal. This is unnecessary for unbuffered terminals which will automatically flush.

Checks if the terminal is indeed a terminal.

Alternatively you can use the user_attended function which does the same.

Checks if this terminal wants emoji output.

Returns the terminal size or gets sensible defaults.

Returns the terminal size in rows and columns.

If the size cannot be reliably determined None is returned.

Moves the cursor up n lines

Moves the cursor down n lines

Clears the current line.

The positions the cursor at the beginning of the line again.

Clear the last n lines.

This positions the cursor at the beginning of the first line that was cleared.

Trait Implementations

impl AsRawFd for Term
[src]

Extracts the raw file descriptor. Read more

impl Write for Term
[src]

Write a buffer into this object, returning how many bytes were written. Read more

Flush this output stream, ensuring that all intermediately buffered contents reach their destination. Read more

Attempts to write an entire buffer into this write. Read more

Writes a formatted string into this writer, returning any error encountered. Read more

Important traits for &'a mut R

Creates a "by reference" adaptor for this instance of Write. Read more

impl Read for Term
[src]

Pull some bytes from this source into the specified buffer, returning how many bytes were read. Read more

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

Determines if this Reader can work with buffers of uninitialized memory. Read more

Read all bytes until EOF in this source, placing them into buf. Read more

Read all bytes until EOF in this source, appending them to buf. Read more

Read the exact number of bytes required to fill buf. Read more

Important traits for &'a mut R

Creates a "by reference" adaptor for this instance of Read. Read more

Important traits for Bytes<R>

Transforms this Read instance to an [Iterator] over its bytes. Read more

Important traits for Chars<R>

Deprecated since 1.27.0

: Use str::from_utf8 instead: https://doc.rust-lang.org/nightly/std/str/struct.Utf8Error.html#examples

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

the semantics of a partial read/write of where errors happen is currently unclear and may change

Transforms this Read instance to an [Iterator] over [char]s. Read more

Important traits for Chain<T, U>

Creates an adaptor which will chain this stream with another. Read more

Important traits for Take<T>

Creates an adaptor which will read at most limit bytes from it. Read more

Auto Trait Implementations

impl Send for Term

impl Sync for Term