Struct below_common::logutil::CompoundRecordDecorator [−][src]
Trait Implementations
Format normal text
Format timestamp
Format Record level
Format a comma between key-value pairs
Format a value
Format a file location
Format value
Write a buffer into this writer, returning how many bytes were written. Read more
Flush this output stream, ensuring that all intermediately buffered contents reach their destination. Read more
can_vector)Determines if this Writer has an efficient write_vectored
implementation. Read more
Attempts to write an entire buffer into this writer. Read more
write_all_vectored)Attempts to write multiple buffers into this writer. Read more
Writes a formatted string into this writer, returning any error encountered. Read more
Auto Trait Implementations
impl<'a, W, T> !RefUnwindSafe for CompoundRecordDecorator<'a, W, T>
impl<'a, W, T> !Send for CompoundRecordDecorator<'a, W, T>
impl<'a, W, T> !Sync for CompoundRecordDecorator<'a, W, T>
impl<'a, W, T> Unpin for CompoundRecordDecorator<'a, W, T>
impl<'a, W, T> !UnwindSafe for CompoundRecordDecorator<'a, W, T>
Blanket Implementations
Mutably borrows from an owned value. Read more
impl<W> DetectColors for W where
W: Write,
impl<W> DetectColors for W where
W: Write,
pub fn available_colors(&mut self) -> Result<u16, Error>
pub fn available_colors(&mut self) -> Result<u16, Error>
How many ANSI colors are supported (from 8 to 256)? Read more
impl<W> DetectCursorPos for W where
W: Write,
impl<W> DetectCursorPos for W where
W: Write,
Executes the given command directly.
The given command its ANSI escape code will be written and flushed onto Self.
Arguments
-
The command that you want to execute directly.
Example
use std::io::{Write, stdout};
use crossterm::{Result, ExecutableCommand, style::Print};
fn main() -> Result<()> {
// will be executed directly
stdout()
.execute(Print("sum:\n".to_string()))?
.execute(Print(format!("1 + 1= {} ", 1 + 1)))?;
Ok(())
// ==== Output ====
// sum:
// 1 + 1 = 2
}Have a look over at the Command API for more details.
Notes
- In the case of UNIX and Windows 10, ANSI codes are written to the given ‘writer’.
- In case of Windows versions lower than 10, a direct WinAPI call will be made.
The reason for this is that Windows versions lower than 10 do not support ANSI codes,
and can therefore not be written to the given
writer. Therefore, there is no difference between execute and queue for those old Windows versions.
impl<W> IntoRawMode for W where
W: Write,
impl<W> IntoRawMode for W where
W: Write,
pub fn into_raw_mode(self) -> Result<RawTerminal<W>, Error>
pub fn into_raw_mode(self) -> Result<RawTerminal<W>, Error>
Switch to raw mode. Read more
Queues the given command for further execution.
Queued commands will be executed in the following cases:
- When
flushis called manually on the given type implementingio::Write. - The terminal will
flushautomatically if the buffer is full. - Each line is flushed in case of
stdout, because it is line buffered.
Arguments
-
The command that you want to queue for later execution.
Examples
use std::io::{Write, stdout};
use crossterm::{Result, QueueableCommand, style::Print};
fn main() -> Result<()> {
let mut stdout = stdout();
// `Print` will executed executed when `flush` is called.
stdout
.queue(Print("foo 1\n".to_string()))?
.queue(Print("foo 2".to_string()))?;
// some other code (no execution happening here) ...
// when calling `flush` on `stdout`, all commands will be written to the stdout and therefore executed.
stdout.flush()?;
Ok(())
// ==== Output ====
// foo 1
// foo 2
}Have a look over at the Command API for more details.
Notes
- In the case of UNIX and Windows 10, ANSI codes are written to the given ‘writer’.
- In case of Windows versions lower than 10, a direct WinAPI call will be made.
The reason for this is that Windows versions lower than 10 do not support ANSI codes,
and can therefore not be written to the given
writer. Therefore, there is no difference between execute and queue for those old Windows versions.
Calls the given closure and return the result. Read more
Calls the given closure on self.