langfuse_client_base/models/
observation_level.rs

1/*
2 * langfuse
3 *
4 * ## Authentication  Authenticate with the API using [Basic Auth](https://en.wikipedia.org/wiki/Basic_access_authentication), get API keys in the project settings:  - username: Langfuse Public Key - password: Langfuse Secret Key  ## Exports  - OpenAPI spec: https://cloud.langfuse.com/generated/api/openapi.yml - Postman collection: https://cloud.langfuse.com/generated/postman/collection.json
5 *
6 * The version of the OpenAPI document:
7 *
8 * Generated by: https://openapi-generator.tech
9 */
10
11use crate::models;
12use serde::{Deserialize, Serialize};
13
14///
15#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
16pub enum ObservationLevel {
17    #[serde(rename = "DEBUG")]
18    Debug,
19    #[serde(rename = "DEFAULT")]
20    Default,
21    #[serde(rename = "WARNING")]
22    Warning,
23    #[serde(rename = "ERROR")]
24    Error,
25}
26
27impl std::fmt::Display for ObservationLevel {
28    fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
29        match self {
30            Self::Debug => write!(f, "DEBUG"),
31            Self::Default => write!(f, "DEFAULT"),
32            Self::Warning => write!(f, "WARNING"),
33            Self::Error => write!(f, "ERROR"),
34        }
35    }
36}
37
38impl Default for ObservationLevel {
39    fn default() -> ObservationLevel {
40        Self::Debug
41    }
42}