Add missing doc(cfg) attrs

This commit is contained in:
Jonas Platte 2021-06-23 11:52:19 +02:00
parent b95ebe444e
commit c4e4830f32
No known key found for this signature in database
GPG key ID: CC154DE0E30B7C67

View file

@ -120,11 +120,13 @@ pub enum Error {
/// An error occurred in the crypto store.
#[cfg(feature = "encryption")]
#[cfg_attr(feature = "docs", doc(cfg(encryption)))]
#[error(transparent)]
CryptoStoreError(#[from] CryptoStoreError),
/// An error occurred during decryption.
#[cfg(feature = "encryption")]
#[cfg_attr(feature = "docs", doc(cfg(encryption)))]
#[error(transparent)]
DecryptorError(#[from] DecryptorError),