12 lines
264 B
Rust
12 lines
264 B
Rust
use bon::Builder;
|
|
|
|
#[derive(Debug, Builder, Clone)]
|
|
pub struct ServerConfig {
|
|
#[builder(default = String::from("0.0.0.0"))]
|
|
pub host: String,
|
|
#[builder(default = 6171)]
|
|
pub port: u16,
|
|
#[builder(default = 256)]
|
|
pub max_connections: usize,
|
|
}
|