Move the Default implementation into more generate_attribute!.

This commit is contained in:
Emmanuel Gil Peyrot 2017-06-14 00:53:18 +01:00
commit ebc7582250
3 changed files with 3 additions and 21 deletions

View file

@ -108,13 +108,7 @@ generate_attribute!(MessageType, "type", {
Groupchat => "groupchat",
Headline => "headline",
Normal => "normal",
});
impl Default for MessageType {
fn default() -> MessageType {
MessageType::Normal
}
}
}, Default = Normal);
type Lang = String;
type Body = String;