1/// 2/// StoreError 3/// 4 5#[derive(Debug)] 6pub enum StoreError { 7 NotFound { key: String }, 8 Corrupt { message: String }, 9 InvariantViolation { message: String }, 10}