summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorWiktor Kwapisiewicz <wiktor@metacode.biz>2020-04-27 10:26:07 +0200
committerWiktor Kwapisiewicz <wiktor@metacode.biz>2020-04-28 11:39:13 +0200
commit9d4b91098d37549347fdfff9513b629fcd3d973f (patch)
treeca57b1ef8d2bc7702da081ed6938364859ab7693 /examples
parentc72e1b0855795d2fcd914157e1bd64c66bd6b997 (diff)
openpgp: Convert `Cert::from_packet_pile` into `TryFrom`
- Drop `Cert::from_packet_pile`. - Fixes #462.
Diffstat (limited to 'examples')
-rw-r--r--examples/guide-exploring-openpgp.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/guide-exploring-openpgp.rs b/examples/guide-exploring-openpgp.rs
index 298fcd6c..82296cf4 100644
--- a/examples/guide-exploring-openpgp.rs
+++ b/examples/guide-exploring-openpgp.rs
@@ -1,6 +1,7 @@
//! https://sequoia-pgp.org/guide/exploring-openpgp/
extern crate sequoia_openpgp as openpgp;
+use std::convert::TryFrom;
use crate::openpgp::parse::Parse;
use crate::openpgp::policy::StandardPolicy as P;
@@ -51,7 +52,7 @@ fn main() {
println!();
// Parse into Cert.
- let cert = openpgp::Cert::from_packet_pile(pile).unwrap();
+ let cert = openpgp::Cert::try_from(pile).unwrap();
println!("Fingerprint: {}", cert.fingerprint());
// List userids.