You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
distant/src/options/config/generate.rs

10 lines
295 B
Rust

use super::common::LoggingSettings;
use serde::{Deserialize, Serialize};
/// Represents configuration settings for the distant generate
#[derive(Clone, Debug, Default, PartialEq, Eq, Serialize, Deserialize)]
pub struct GenerateConfig {
#[serde(flatten)]
pub logging: LoggingSettings,
}