eme: Restore docstrings.

Emmanuel Gil Peyrot created

Change summary

src/eme.rs | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)

Detailed changes

src/eme.rs 🔗

@@ -12,13 +12,14 @@ use error::Error;
 
 use ns;
 
+generate_element_with_only_attributes!(
 /// Structure representing an `<encryption xmlns='urn:xmpp:eme:0'/>` element.
-generate_element_with_only_attributes!(ExplicitMessageEncryption, "encryption", ns::EME, [
-    // Namespace of the encryption scheme used.
+ExplicitMessageEncryption, "encryption", ns::EME, [
+    /// 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.
+    /// User-friendly name for the encryption scheme, should be `None` for OTR,
+    /// legacy OpenPGP and OX.
     name: Option<String> = "name" => optional,
 ]);