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.rs12
1 files changed, 6 insertions, 6 deletions
diff --git a/openpgp/src/cert/amalgamation/key/iter.rs b/openpgp/src/cert/amalgamation/key/iter.rs
index 45d3c618..9d4d6ce7 100644
--- a/openpgp/src/cert/amalgamation/key/iter.rs
+++ b/openpgp/src/cert/amalgamation/key/iter.rs
@@ -82,9 +82,9 @@ 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
+assert_send_and_sync!(KeyAmalgamationIter<'_, P, R>
+ where P: key::KeyParts,
+ R: key::KeyRole,
);
impl<'a, P, R> fmt::Debug for KeyAmalgamationIter<'a, P, R>
@@ -684,9 +684,9 @@ 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
+assert_send_and_sync!(ValidKeyAmalgamationIter<'_, P, R>
+ where P: key::KeyParts,
+ R: key::KeyRole,
);
impl<'a, P, R> fmt::Debug for ValidKeyAmalgamationIter<'a, P, R>