dejavu-runtime 0.1.1

DejaVu shared types and runtime
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use super::*;

pub struct Text;

impl Escaper for Text {
    fn write_escaped<W>(&self, mut fmt: W, string: &str) -> core::fmt::Result
    where
        W: Write,
    {
        fmt.write_str(string)
    }
}