pub struct TerminalChannel { /* private fields */ }
Expand description

An up channel that supports writing into multiple virtual terminals within the same buffer.

An UpChannel can be turned into a TerminalChannel by using the into_terminal method.

Virtual terminals allow you to share one buffer for writing multiple streams. The virtual terminals number from 0 to 15 and are implemented with a simple “terminal switch” sequence on the fly, so there is no need to declare them in advance. You could, for example, use different terminal numbers for messages of different priorities to separate them in a viewer program. Printing uses a TerminalChannel internally.

Implementations§

source§

impl TerminalChannel

source

pub fn write(&mut self, number: u8) -> TerminalWriter<'_>

Creates a writer to write a message to the virtual terminal specified by number.

The correct way to use this method is to call it once for each write operation. This is so that non blocking modes will work correctly.

The writer supports formatted writing with the standard write and ufmt’s uwrite.

source

pub fn mode(&self) -> ChannelMode

Gets the current blocking mode of the channel. The default is NoBlockSkip.

source

pub fn set_mode(&mut self, mode: ChannelMode)

Sets the blocking mode of the channel

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

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

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

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

Performs the conversion.