9731278d2a
I think 70 is too agressive, especially since it includes indentation when determining line length.
19 lines
428 B
Rust
19 lines
428 B
Rust
use crate::common::*;
|
|
|
|
/// String wrapper that uses nonblank characters to display spaces and tabs
|
|
pub struct ShowWhitespace<'str>(pub &'str str);
|
|
|
|
impl<'str> Display for ShowWhitespace<'str> {
|
|
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
|
|
for c in self.0.chars() {
|
|
match c {
|
|
'\t' => write!(f, "␉")?,
|
|
' ' => write!(f, "␠")?,
|
|
_ => write!(f, "{}", c)?,
|
|
};
|
|
}
|
|
|
|
Ok(())
|
|
}
|
|
}
|