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

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

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