mirror of
https://github.com/meilisearch/meilisearch.git
synced 2025-02-25 03:49:25 +08:00
15 lines
292 B
Rust
15 lines
292 B
Rust
|
use serde::{Deserialize, Serialize};
|
||
|
use uuid::Uuid;
|
||
|
|
||
|
#[derive(Serialize, Deserialize, Debug)]
|
||
|
pub struct IndexUuid {
|
||
|
pub uid: String,
|
||
|
pub index_meta: IndexMeta,
|
||
|
}
|
||
|
|
||
|
#[derive(Serialize, Deserialize, Debug)]
|
||
|
pub struct IndexMeta {
|
||
|
pub uuid: Uuid,
|
||
|
pub creation_task_id: usize,
|
||
|
}
|