distant/src/config/client/repl.rs

9 lines
287 B
Rust
Raw Normal View History

use clap::Args;
2022-08-08 06:10:32 +00:00
use serde::{Deserialize, Serialize};
#[derive(Args, Clone, Debug, Default, PartialEq, Serialize, Deserialize)]
2022-08-08 06:10:32 +00:00
pub struct ClientReplConfig {
/// Represents the maximum time (in seconds) to wait for a network request before timing out
pub timeout: Option<f32>,
}