mirror of
https://github.com/meilisearch/meilisearch.git
synced 2024-11-23 18:45:06 +08:00
16 lines
421 B
Rust
16 lines
421 B
Rust
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(Serialize, Deserialize, Debug, Clone, Copy, Default, PartialEq, Eq)]
|
|
#[serde(rename_all = "camelCase", default)]
|
|
pub struct RuntimeTogglableFeatures {
|
|
pub score_details: bool,
|
|
pub vector_store: bool,
|
|
pub metrics: bool,
|
|
pub export_puffin_reports: bool,
|
|
}
|
|
|
|
#[derive(Default, Debug, Clone, Copy)]
|
|
pub struct InstanceTogglableFeatures {
|
|
pub metrics: bool,
|
|
}
|