Skip to content

Commit edff63b

Browse files
CodingAnarchyclaude
andcommitted
Fix database trait bounds and compilation issues
- Fix KeySource::Generated usage in tests - Add proper trait bounds for generic database operations - Remove problematic database operations from generic implementations - Add concrete implementations for database-specific methods 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent af4e661 commit edff63b

File tree

2 files changed

+311
-405
lines changed

2 files changed

+311
-405
lines changed

src/encryption.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,10 @@ pub enum EncryptionError {
106106
/// Cryptographic operation error.
107107
#[error("Cryptographic error: {0}")]
108108
Cryptographic(String),
109+
110+
/// Database operation error.
111+
#[error("Database error: {0}")]
112+
DatabaseError(String),
109113
}
110114

111115
/// Supported encryption algorithms.

0 commit comments

Comments
 (0)