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