//! A string formatting library in async/await. /// Async version of the macro write!. #[macro_export] macro_rules! awrite { ($dst:expr, $($arg:tt)*) => { $dst.write_all(&mut format!($($arg)*).as_bytes()) }; }