summaryrefslogtreecommitdiffstats
path: root/openpgp/src/cert/amalgamation/key/iter.rs
diff options
context:
space:
mode:
Diffstat (limited to 'openpgp/src/cert/amalgamation/key/iter.rs')
-rw-r--r--openpgp/src/cert/amalgamation/key/iter.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/openpgp/src/cert/amalgamation/key/iter.rs b/openpgp/src/cert/amalgamation/key/iter.rs
index a41673bd..45d3c618 100644
--- a/openpgp/src/cert/amalgamation/key/iter.rs
+++ b/openpgp/src/cert/amalgamation/key/iter.rs
@@ -82,6 +82,10 @@ pub struct KeyAmalgamationIter<'a, P, R>
_p: std::marker::PhantomData<P>,
_r: std::marker::PhantomData<R>,
}
+assert_send_and_sync!(KeyAmalgamationIter<'_, P, R>,
+ P: key::KeyParts,
+ R: key::KeyRole
+);
impl<'a, P, R> fmt::Debug for KeyAmalgamationIter<'a, P, R>
where P: key::KeyParts,
@@ -680,6 +684,10 @@ pub struct ValidKeyAmalgamationIter<'a, P, R>
_p: std::marker::PhantomData<P>,
_r: std::marker::PhantomData<R>,
}
+assert_send_and_sync!(ValidKeyAmalgamationIter<'_, P, R>,
+ P: key::KeyParts,
+ R: key::KeyRole
+);
impl<'a, P, R> fmt::Debug for ValidKeyAmalgamationIter<'a, P, R>
where P: key::KeyParts,