Struct nate_common::XmlEscape [−][src]
pub struct XmlEscape<T: ?Sized>(pub T);
Expand description
A wrapper around a displayable type that makes it write out XML escaped.
All characters are written as is except "
, &
, '
, <
, and >
which are printed as e.g.
"
.
Tuple Fields
0: T