Formats a value into a ByteString.
ByteString
( $ fmt : expr , $ ( $ arg : tt ) * ) => { { let mut vec = Vec:: new ( ) ; write ! ( vec , $ fmt , $ ( $ arg ) * ) ; :: std:: string:: ByteString:: from_vec ( vec ) } } ;