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

Calls writeln! with the passed arguments and unwraps the result.

Useful for writing to things with infallible Write implementations like Source and String.