summaryrefslogtreecommitdiffstats
path: root/guide
diff options
context:
space:
mode:
Diffstat (limited to 'guide')
-rw-r--r--guide/src/chapter_01.md32
1 files changed, 16 insertions, 16 deletions
diff --git a/guide/src/chapter_01.md b/guide/src/chapter_01.md
index b2b143bb..889e82f1 100644
--- a/guide/src/chapter_01.md
+++ b/guide/src/chapter_01.md
@@ -118,15 +118,15 @@ fn main() {
# // whether the signature checks out mathematically, we apply
# // our policy.
# match results.get(0) {
-# Some(VerificationResult::GoodChecksum(..)) =>
+# Some(VerificationResult::GoodChecksum { .. }) =>
# good = true,
-# Some(VerificationResult::NotAlive(_)) =>
+# Some(VerificationResult::NotAlive { .. }) =>
# return Err(failure::err_msg(
# "Good, but not alive signature")),
-# Some(VerificationResult::MissingKey(_)) =>
+# Some(VerificationResult::MissingKey { .. }) =>
# return Err(failure::err_msg(
# "Missing key to verify signature")),
-# Some(VerificationResult::BadChecksum(_)) =>
+# Some(VerificationResult::BadChecksum { .. }) =>
# return Err(failure::err_msg("Bad signature")),
# None =>
# return Err(failure::err_msg("No signature")),
@@ -264,15 +264,15 @@ fn generate() -> openpgp::Result<openpgp::TPK> {
# // whether the signature checks out mathematically, we apply
# // our policy.
# match results.get(0) {
-# Some(VerificationResult::GoodChecksum(..)) =>
+# Some(VerificationResult::GoodChecksum { .. }) =>
# good = true,
-# Some(VerificationResult::NotAlive(_)) =>
+# Some(VerificationResult::NotAlive { .. }) =>
# return Err(failure::err_msg(
# "Good, but not alive signature")),
-# Some(VerificationResult::MissingKey(_)) =>
+# Some(VerificationResult::MissingKey { .. }) =>
# return Err(failure::err_msg(
# "Missing key to verify signature")),
-# Some(VerificationResult::BadChecksum(_)) =>
+# Some(VerificationResult::BadChecksum { .. }) =>
# return Err(failure::err_msg("Bad signature")),
# None =>
# return Err(failure::err_msg("No signature")),
@@ -410,15 +410,15 @@ fn sign(sink: &mut Write, plaintext: &str, tsk: &openpgp::TPK)
# // whether the signature checks out mathematically, we apply
# // our policy.
# match results.get(0) {
-# Some(VerificationResult::GoodChecksum(..)) =>
+# Some(VerificationResult::GoodChecksum { .. }) =>
# good = true,
-# Some(VerificationResult::NotAlive(_)) =>
+# Some(VerificationResult::NotAlive { .. }) =>
# return Err(failure::err_msg(
# "Good, but not alive signature")),
-# Some(VerificationResult::MissingKey(_)) =>
+# Some(VerificationResult::MissingKey { .. }) =>
# return Err(failure::err_msg(
# "Missing key to verify signature")),
-# Some(VerificationResult::BadChecksum(_)) =>
+# Some(VerificationResult::BadChecksum { .. }) =>
# return Err(failure::err_msg("Bad signature")),
# None =>
# return Err(failure::err_msg("No signature")),
@@ -567,15 +567,15 @@ impl<'a> VerificationHelper for Helper<'a> {
// whether the signature checks out mathematically, we apply
// our policy.
match results.get(0) {
- Some(VerificationResult::GoodChecksum(..)) =>
+ Some(VerificationResult::GoodChecksum { .. }) =>
good = true,
- Some(VerificationResult::NotAlive(_)) =>
+ Some(VerificationResult::NotAlive { .. }) =>
return Err(failure::err_msg(
"Good, but not alive signature")),
- Some(VerificationResult::MissingKey(_)) =>
+ Some(VerificationResult::MissingKey { .. }) =>
return Err(failure::err_msg(
"Missing key to verify signature")),
- Some(VerificationResult::BadChecksum(_)) =>
+ Some(VerificationResult::BadChecksum { .. }) =>
return Err(failure::err_msg("Bad signature")),
None =>
return Err(failure::err_msg("No signature")),