Browse Source

Add the Clone trait to Error

pull/5/head
Rodolphe Breard 5 years ago
parent
commit
83563ad950
  1. 2
      acme_common/src/error.rs

2
acme_common/src/error.rs

@ -1,6 +1,6 @@
use std::fmt;
#[derive(Debug)]
#[derive(Clone, Debug)]
pub struct Error {
pub message: String,
}

Loading…
Cancel
Save