Skip to content

Commit

Permalink
derive Clone for Certificate
Browse files Browse the repository at this point in the history
Part of rustls#17
  • Loading branch information
MadLittleMods committed Feb 28, 2025
1 parent 39e74dd commit fe3a5c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rcgen/src/certificate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ use crate::{
};

/// An issued certificate together with the parameters used to generate it.
#[derive(Debug)]
#[derive(Debug, Clone)]
pub struct Certificate {
pub(crate) params: CertificateParams,
pub(crate) subject_public_key_info: Vec<u8>,
Expand Down

0 comments on commit fe3a5c9

Please sign in to comment.