Skip to content

Commit

Permalink
Derive Clone for Uri
Browse files Browse the repository at this point in the history
  • Loading branch information
benthecarman committed Feb 27, 2023
1 parent b67c86d commit ab5c7ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ pub use ser::{SerializeParams};
/// This struct represents all fields of BIP21 URI with the ability to add more extra fields using
/// the `extras` field. By default there are no extra fields so an empty implementation is used.
#[non_exhaustive]
#[derive(Debug)]
#[derive(Debug, Clone)]
pub struct Uri<'a, Extras = NoExtras> {
/// The address provided in the URI.
///
Expand Down

0 comments on commit ab5c7ab

Please sign in to comment.