Module lock_keeper::types::database

source ·
Expand description

Models for data stored in the database

Modules§

  • Database models for users and user-related fields
  • This module specifies our StoredSecret type. Which is a general representation of a secret to be stored in our database.

Structs§

  • HexBytes 🔒
    Convenience type for serializing byte arrays as hex strings. Add the #[serde(try_from = "HexBytes", into = "HexBytes")] attribute macro above any type you’d like to serialize this way. This type should only be used to serialize byte collections. It should not be used directly.