We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1b545e commit df3e981Copy full SHA for df3e981
cot/src/db.rs
@@ -120,7 +120,11 @@ pub type Result<T> = std::result::Result<T, DatabaseError>;
120
note = "annotate `{Self}` with the `#[cot::db::model]` attribute"
121
)]
122
pub trait Model: Sized + Send + 'static {
123
- #[expect(clippy::doc_markdown, reason = "UPPER_SNAKE_CASE")]
+ #[allow(
124
+ clippy::allow_attributes,
125
+ clippy::doc_markdown,
126
+ reason = "UPPER_SNAKE_CASE"
127
+ )]
128
/// A helper structure for the fields of the model.
129
///
130
/// This structure should a constant [`FieldRef`](query::FieldRef) instance
0 commit comments