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/config/generate.rs

10 lines
280 B
Rust

use super::CommonConfig;
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 common: CommonConfig,
}