IRC Helper easing the access and creation of IRC Messages.
``` use irc_rust::message::Message;
let message = Message::new("@key1=value1;key2=value2 :name!user@host CMD param1 param2 :trailing");
asserteq!(message.tostring(), "@key1=value1;key2=value2 :name!user@host CMD param1 param2 :trailing"); ```