From fbe22e6db17e65b5e20a9d7a0efcb51c6c4c7145 Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Thu, 20 Sep 2018 20:58:53 +0200 Subject: [PATCH] eme: Fix indentation. --- src/eme.rs | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) 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 {}