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

9 lines
209 B
Rust

use serde::{Deserialize, Serialize};
use crate::options::common::Seconds;
#[derive(Clone, Debug, Default, PartialEq, Serialize, Deserialize)]
pub struct ClientApiConfig {
pub timeout: Option<Seconds>,
}