diff --git a/src/eme.rs b/src/eme.rs
index f596dc8f8b4c17751121a364bc09d5ccc1cc84e7..51eb2a6d3483135fe0977a26e597a695a3e1e12f 100644
--- a/src/eme.rs
+++ b/src/eme.rs
@@ -7,16 +7,17 @@
use message::MessagePayload;
generate_element!(
-/// Structure representing an `` element.
-ExplicitMessageEncryption, "encryption", EME,
-attributes: [
- /// Namespace of the encryption scheme used.
- namespace: String = "namespace" => required,
+ /// Structure representing an `` element.
+ ExplicitMessageEncryption, "encryption", EME,
+ attributes: [
+ /// Namespace of the encryption scheme used.
+ namespace: String = "namespace" => required,
- /// User-friendly name for the encryption scheme, should be `None` for OTR,
- /// legacy OpenPGP and OX.
- name: Option = "name" => optional,
-]);
+ /// User-friendly name for the encryption scheme, should be `None` for OTR,
+ /// legacy OpenPGP and OX.
+ name: Option = "name" => optional,
+ ]
+);
impl MessagePayload for ExplicitMessageEncryption {}