Searched refs:formatted_bytes (Results 1 – 1 of 1) sorted by relevance
362 let mut formatted_bytes = FormattedBytes::new(&mut $arr[..]); localVariable363 write!(formatted_bytes, $msg_type).unwrap();364 write!(formatted_bytes, $($x,)*).unwrap();365 let size = formatted_bytes.size();783 let mut formatted_bytes = FormattedBytes::new(&mut res); in get_var_all() localVariable784 write!(formatted_bytes, "INFO{}", name).unwrap(); in get_var_all()785 args.iter().for_each(|arg| write!(formatted_bytes, ":{}", arg).unwrap()); in get_var_all()786 write!(formatted_bytes, ": {}", val).unwrap(); in get_var_all()787 let size = formatted_bytes.size(); in get_var_all()957 let mut formatted_bytes = FormattedBytes::new(&mut $arr[..]); localVariable[all …]