summaryrefslogtreecommitdiffstats
path: root/openpgp/src/cert/keyiter.rs
diff options
context:
space:
mode:
Diffstat (limited to 'openpgp/src/cert/keyiter.rs')
-rw-r--r--openpgp/src/cert/keyiter.rs21
1 files changed, 5 insertions, 16 deletions
diff --git a/openpgp/src/cert/keyiter.rs b/openpgp/src/cert/keyiter.rs
index 7bf73a5c..db13e8d4 100644
--- a/openpgp/src/cert/keyiter.rs
+++ b/openpgp/src/cert/keyiter.rs
@@ -9,17 +9,7 @@ use crate::{
packet::key,
packet::key::SecretKeyMaterial,
types::KeyFlags,
- cert::{
- Cert,
- components::{
- Amalgamation,
- KeyBundle,
- UnfilteredKeyBundleIter,
- ValidAmalgamation,
- },
- KeyAmalgamation,
- ValidKeyAmalgamation,
- },
+ cert::prelude::*,
policy::Policy,
};
@@ -272,7 +262,7 @@ impl<'a, P: 'a + key::KeyParts> KeyIter<'a, P>
/// ```rust
/// # extern crate sequoia_openpgp as openpgp;
/// # use openpgp::Result;
- /// # use openpgp::cert::CertBuilder;
+ /// # use openpgp::cert::prelude::*;
/// use openpgp::types::RevocationStatus;
/// use sequoia_openpgp::policy::StandardPolicy;
///
@@ -310,7 +300,7 @@ impl<'a, P: 'a + key::KeyParts> KeyIter<'a, P>
/// ```rust
/// # extern crate sequoia_openpgp as openpgp;
/// # use openpgp::Result;
- /// # use openpgp::cert::CertBuilder;
+ /// # use openpgp::cert::prelude::*;
/// use openpgp::types::RevocationStatus;
/// use sequoia_openpgp::policy::StandardPolicy;
///
@@ -363,7 +353,7 @@ impl<'a, P: 'a + key::KeyParts> KeyIter<'a, P>
/// ```rust
/// # extern crate sequoia_openpgp as openpgp;
/// # use openpgp::Result;
- /// # use openpgp::cert::CertBuilder;
+ /// # use openpgp::cert::prelude::*;
/// use sequoia_openpgp::policy::StandardPolicy;
///
/// # fn main() { f().unwrap(); }
@@ -766,9 +756,8 @@ impl<'a, P: 'a + key::KeyParts> ValidKeyIter<'a, P>
/// ```rust
/// extern crate sequoia_openpgp as openpgp;
/// # use openpgp::Result;
- /// # use openpgp::cert::CertBuilder;
/// use openpgp::types::RevocationStatus;
- /// use openpgp::cert::components::ValidAmalgamation;
+ /// use openpgp::cert::prelude::*;
/// use sequoia_openpgp::policy::StandardPolicy;
///
/// # fn main() { f().unwrap(); }