Add missing doc(cfg) attrs

master
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
1 changed files with 2 additions and 0 deletions

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),