Struct indent_write::io::IndentWriter[][src]

pub struct IndentWriter<'i, W> { /* fields omitted */ }
Expand description

Adapter for writers to indent each line

An IndentWriter adapts an io::Write object to insert an indent before each non-empty line. Specifically, this means it will insert an indent between each newline when followed by a non-newline.

These writers can be nested to provide increasing levels of indentation.

Example

use indent_write::io::IndentWriter;

let output = Vec::new();

let mut indented = IndentWriter::new("\t", output);

// Lines will be indented
write!(indented, "Line 1\nLine 2\n");

// Empty lines will not be indented
write!(indented, "\n\nLine 3\n\n");

assert_eq!(indented.get_ref(), b"\tLine 1\n\tLine 2\n\n\n\tLine 3\n\n");

Implementations

Create a new IndentWriter.

Create a new IndentWriter which will not add an indent to the first written line.

Example
use indent_write::io::IndentWriter;

let mut buffer = Vec::new();
let mut writer = IndentWriter::new_skip_initial("    ", &mut buffer);

writeln!(writer, "Line 1").unwrap();
writeln!(writer, "Line 2").unwrap();
writeln!(writer, "Line 3").unwrap();

assert_eq!(buffer, b"Line 1\n    Line 2\n    Line 3\n")

Extract the writer from the IndentWriter, discarding any in-progress indent state.

Get a reference to the wrapped writer

Get the string being used as an indent for each line

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

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

Like write, except that it writes from a slice of buffers. Read more

🔬 This is a nightly-only experimental API. (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

🔬 This is a nightly-only experimental API. (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

Creates a “by reference” adapter for this instance of Write. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

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

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

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.