Struct pulldown_cmark::escape::WriteWrapper
source · pub struct WriteWrapper<W>(pub W);Expand description
This wrapper exists because we can’t have both a blanket implementation
for all types implementing Write and types of the for &mut W where
W: StrWrite. Since we need the latter a lot, we choose to wrap
Write types.
Tuple Fields§
§0: W