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.
macro_rules! writeln {
($dst:expr $(,)?) => { ... };
($dst:expr, $($arg:tt)*) => { ... };
}Writes formatted HTML to a buffer with a newline (<br>) appended.
See std::writeln! for more information.