Skip to content

Commit d6b84d3

Browse files
committed
Use the non_exhaustive feature in CertificateParams
This attribute replaces the _hidden field of the struct, serving the same purpose. For enums, we don't use the non_exhaustive feature yet as we'd like to have exhaustivness checks at least for our internal code. For more, see this comment by @dtolnay [1] It stabilized in Rust 1.40.0 which got released today. The MSRV policy of this crate is to follow whatever the currently latest released Rust version is. [1]: rust-lang/rust#44109 (comment)
1 parent 6e25da2 commit d6b84d3

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/lib.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -262,6 +262,7 @@ impl <'a> Iterator for DistinguishedNameIterator<'a> {
262262

263263
/// Parameters used for certificate generation
264264
#[allow(missing_docs)]
265+
#[non_exhaustive]
265266
pub struct CertificateParams {
266267
pub alg :&'static SignatureAlgorithm,
267268
pub not_before :DateTime<Utc>,
@@ -274,8 +275,6 @@ pub struct CertificateParams {
274275
pub custom_extensions :Vec<CustomExtension>,
275276
/// The certificate's key pair, a new random key pair will be generated if this is `None`
276277
pub key_pair :Option<KeyPair>,
277-
// To make the struct non-exhaustive
278-
_hidden :(),
279278
}
280279

281280
impl Default for CertificateParams {
@@ -296,7 +295,6 @@ impl Default for CertificateParams {
296295
extended_key_usages : Vec::new(),
297296
custom_extensions : Vec::new(),
298297
key_pair : None,
299-
_hidden :(),
300298
}
301299
}
302300
}

0 commit comments

Comments
 (0)