I want to do the following in Rust:
let (command, options) = message.splitn(2, ' ');
This can't be done because of:
expected struct `std::str::SplitN`, found tuple
The split will always be two and I like having named variables. The message may not contain a space character.