writeln

Macro writeln 

Source
macro_rules! writeln {
    ($dst:expr $(,)?) => { ... };
    ($dst:expr, $($arg:tt)*) => { ... };
}
Expand description

Writes formatted HTML to a buffer with a newline (<br>) appended.

See std::writeln! for more information.