1 2 3 4 5 6 7 8 9 10 11 12
use core::net::SocketAddr; use crate::cfg::NativeLoadConfig; /// UDP engine config. #[derive(Debug, Clone)] pub struct Config { /// Target endpoint. pub addr: SocketAddr, /// Native workload settings. pub native: NativeLoadConfig, }