We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
fn main() { println!("{:?}", format!("{:<15}", std::net::Ipv4Addr::UNSPECIFIED)); println!("{:?}", format!("{:>15}", std::net::Ipv4Addr::UNSPECIFIED)); }
produces
"0.0.0.0" "0.0.0.0"
but I'd expect
"0.0.0.0 " " 0.0.0.0"