21个版本 (5个破坏性更新)
0.6.2 | 2024年7月23日 |
---|---|
0.4.0 | 2024年2月28日 |
0.1.16 | 2023年4月23日 |
0.1.14 | 2023年3月28日 |
#500 在 数据库接口
每月130 次下载
43KB
1K SLoC
Mongoose
use async_trait::async_trait;
use bson::doc;
use chrono::{DateTime, Utc};
use mongodb::{options::IndexOptions, Database, IndexModel};
use serde::{Deserialize, Serialize};
use mongoose::Model;
#[derive(Debug, Deserialize, Serialize, Clone)]
pub struct User {
#[serde(rename = "_id")]
pub id: String,
pub age: u32,
pub username: String,
#[serde(with = "bson::serde_helpers::chrono_datetime_as_bson_datetime")]
pub created_at: DateTime<Utc>,
#[serde(with = "bson::serde_helpers::chrono_datetime_as_bson_datetime")]
pub updated_at: DateTime<Utc>,
}
#[async_trait]
impl Model for User {
async fn create_indexes(db: &Database) {
let username_index = IndexModel::builder()
.keys(doc! { "username": 1 })
.options(IndexOptions::builder().unique(true).build())
.build();
let indexes = [username_index];
if let Err(err) = db
.collection::<Self>(Self::collection_name())
.create_indexes(indexes, None)
.await
{
tracing::error!(
"error creating {:?} indexes: {:?}",
Self::collection_name(),
err
);
}
tracing::debug!("indexes created for {:?}", Self::collection_name());
}
}
impl Default for User {
fn default() -> Self {
let now = chrono::Utc::now();
Self {
id: Self::generate_id(),
age: u32::default(),
username: String::new(),
created_at: now,
updated_at: now,
}
}
}
依赖
~25–37MB
~676K SLoC