1 2 3 4 5 6 7
use serde::{Deserialize, Serialize}; #[derive(Serialize, Deserialize, Clone)] pub struct Config { /// Number of worker threads in the nando executor. pub num_executor_threads: u16, }