/// Stubr server configuration.
#[derive(Default, Copy, Clone)]pubstructConfig{/// HTTP port the mock server will be listening on
pubport:Option<u16>,
/// Enables turning off logs
pubverbose:bool,
/// Enables verification via https://docs.rs/wiremock/latest/wiremock/struct.Mock.html#method.expect
pubverify:bool,
/// Global delay in milliseconds.
/// Supersedes any locally defined delay
pubglobal_delay:Option<u64>,
/// Global delay in milliseconds.
/// Contrary to [global_delay], this one is added to any locally defined delay.
/// Use it to simulate network delays.
publatency:Option<u64>,
}