pub fn paint<W: Write>(w: &mut W, items: &[El]) -> Result<()>Expand description
Paint the given elements into the writer.
Useful after loading them with from_str. Can also be useful if you build your elements as a
Vec and want to paint them all in one go.
Alternatively, try calling the paint() method on the types themselves, (i.e. El::paint()).