summaryrefslogtreecommitdiffstats
path: root/openpgp/src/serialize/stream.rs
diff options
context:
space:
mode:
Diffstat (limited to 'openpgp/src/serialize/stream.rs')
-rw-r--r--openpgp/src/serialize/stream.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/openpgp/src/serialize/stream.rs b/openpgp/src/serialize/stream.rs
index 382ca86a..762707ec 100644
--- a/openpgp/src/serialize/stream.rs
+++ b/openpgp/src/serialize/stream.rs
@@ -1799,6 +1799,7 @@ pub struct Recipient<'a> {
keyid: KeyID,
key: &'a Key<key::PublicParts, key::UnspecifiedRole>,
}
+assert_send_and_sync!{Recipient<'a>, 'a}
impl<'a, P, R> From<&'a Key<P, R>> for Recipient<'a>
where P: key::KeyParts,