macro_rules! uwriteln { ($dst:expr, $($arg:tt)*) => { ... }; }
Calls writeln! with the passed arguments and unwraps the result.
writeln!
Useful for writing to things with infallible Write implementations like Source and String.
Write
Source
String