Struct below_common::logutil::CompoundRecordDecorator
source · [−]Trait Implementations
sourceimpl<'a, W, T> Drop for CompoundRecordDecorator<'a, W, T>where
W: Write,
T: Write,
impl<'a, W, T> Drop for CompoundRecordDecorator<'a, W, T>where
W: Write,
T: Write,
sourceimpl<'a, W, T> RecordDecorator for CompoundRecordDecorator<'a, W, T>where
W: Write,
T: Write,
impl<'a, W, T> RecordDecorator for CompoundRecordDecorator<'a, W, T>where
W: Write,
T: Write,
sourcefn start_whitespace(&mut self) -> Result<(), Error>
fn start_whitespace(&mut self) -> Result<(), Error>
Format normal text
sourcefn start_timestamp(&mut self) -> Result<(), Error>
fn start_timestamp(&mut self) -> Result<(), Error>
Format timestamp
sourcefn start_level(&mut self) -> Result<(), Error>
fn start_level(&mut self) -> Result<(), Error>
Format Record level
sourcefn start_comma(&mut self) -> Result<(), Error>
fn start_comma(&mut self) -> Result<(), Error>
Format a comma between key-value pairs
sourcefn start_value(&mut self) -> Result<(), Error>
fn start_value(&mut self) -> Result<(), Error>
Format a value
sourcefn start_location(&mut self) -> Result<(), Error>
fn start_location(&mut self) -> Result<(), Error>
Format a file location
sourcefn start_separator(&mut self) -> Result<(), Error>
fn start_separator(&mut self) -> Result<(), Error>
Format value
sourceimpl<'a, W, T> Write for CompoundRecordDecorator<'a, W, T>where
W: Write,
T: Write,
impl<'a, W, T> Write for CompoundRecordDecorator<'a, W, T>where
W: Write,
T: Write,
sourcefn write(&mut self, buf: &[u8]) -> Result<usize>
fn write(&mut self, buf: &[u8]) -> Result<usize>
Write a buffer into this writer, returning how many bytes were written. Read more
sourcefn flush(&mut self) -> Result<()>
fn flush(&mut self) -> Result<()>
Flush this output stream, ensuring that all intermediately buffered contents reach their destination. Read more
sourcefn is_write_vectored(&self) -> bool
fn is_write_vectored(&self) -> bool
can_vector)Determines if this Writer has an efficient write_vectored
implementation. Read more
1.0.0 · sourcefn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
Attempts to write an entire buffer into this writer. Read more
sourcefn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>
fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>
write_all_vectored)Attempts to write multiple buffers into this writer. 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>where
T: Send,
W: Send,
impl<'a, W, T> Sync for CompoundRecordDecorator<'a, W, T>where
T: Send,
W: Send,
impl<'a, W, T> Unpin for CompoundRecordDecorator<'a, W, T>
impl<'a, W, T> UnwindSafe for CompoundRecordDecorator<'a, W, T>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<W> DetectColors for Wwhere
W: Write,
impl<W> DetectColors for Wwhere
W: Write,
fn available_colors(&mut self) -> Result<u16, Error>
fn available_colors(&mut self) -> Result<u16, Error>
How many ANSI colors are supported (from 8 to 256)? Read more
impl<W> DetectCursorPos for Wwhere
W: Write,
impl<W> DetectCursorPos for Wwhere
W: Write,
fn cursor_pos(&mut self) -> Result<(u16, u16), Error>
fn cursor_pos(&mut self) -> Result<(u16, u16), Error>
Get the (1,1)-based cursor position from the terminal.
impl<T> ExecutableCommand for Twhere
T: Write + ?Sized,
impl<T> ExecutableCommand for Twhere
T: Write + ?Sized,
fn execute(&mut self, command: impl Command) -> Result<&mut T, Error>
fn execute(&mut self, command: impl Command) -> Result<&mut T, Error>
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 Wwhere
W: Write,
impl<W> IntoRawMode for Wwhere
W: Write,
fn into_raw_mode(self) -> Result<RawTerminal<W>, Error>
fn into_raw_mode(self) -> Result<RawTerminal<W>, Error>
Switch to raw mode. Read more
impl<T> QueueableCommand for Twhere
T: Write + ?Sized,
impl<T> QueueableCommand for Twhere
T: Write + ?Sized,
fn queue(&mut self, command: impl Command) -> Result<&mut T, Error>
fn queue(&mut self, command: impl Command) -> Result<&mut T, Error>
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.