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/client/repl.rs

9 lines
287 B
Rust

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