distant 0.20.0

Operate on a remote computer through file and process manipulation
Documentation
1
2
3
4
5
6
7
8
9
10
use serde::{Deserialize, Serialize};

use super::common::LoggingSettings;

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