2023-06-26 12:21:40 +02:00
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
|
2023-07-06 14:20:58 +02:00
|
|
|
#[derive(Serialize, Deserialize, Debug, Clone, Copy, Default, PartialEq, Eq)]
|
2023-06-26 12:21:40 +02:00
|
|
|
#[serde(rename_all = "camelCase", default)]
|
|
|
|
pub struct RuntimeTogglableFeatures {
|
|
|
|
pub score_details: bool,
|
|
|
|
pub vector_store: bool,
|
2023-10-14 00:12:54 +02:00
|
|
|
pub metrics: bool,
|
2023-09-25 14:28:54 +02:00
|
|
|
pub export_puffin_reports: bool,
|
2023-12-06 14:47:34 +01:00
|
|
|
pub proximity_precision: bool,
|
2023-06-26 12:21:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Default, Debug, Clone, Copy)]
|
|
|
|
pub struct InstanceTogglableFeatures {
|
|
|
|
pub metrics: bool,
|
|
|
|
}
|