---
source: apollo-configuration/crates/apollo-configuration-macros/src/lib.rs
expression: pretty_print(output)
---
#[derive(
::std::fmt::Debug,
::std::clone::Clone,
::apollo_configuration::private::schemars::JsonSchema,
::apollo_configuration::private::serde::Deserialize,
)]
#[serde(crate = "::apollo_configuration::private::serde")]
#[schemars(crate = "::apollo_configuration::private::schemars")]
#[serde(rename_all = "snake_case", deny_unknown_fields)]
enum LogLevel {
Debug,
Info,
Warn,
Error,
}
#[automatically_derived]
impl ::apollo_configuration::Validate for LogLevel {
fn validate(&self, mut errors: ::apollo_configuration::ErrorCollector<'_>) {
match self {
Self::Debug => {}
Self::Info => {}
Self::Warn => {}
Self::Error => {}
}
}
}
impl ::apollo_configuration::Configuration for LogLevel {}