//! Simple indentation adapters for [`io::Write`][std::io::Write] and
//! [`fmt::Write`][std::fmt::Write]. Each adapter wraps a writer object, and
//! inserts an indentation at the front of each non-empty line written to that
//! writer.
//!
//! See [`fmt::IndentWriter`] and [`io::IndentWriter`] for examples.