pub trait BaseServerSettings {
    fn get_write_timeout_ms(&self) -> u32;
    fn get_read_timeout_ms(&self) -> u32;
}
Expand description

Basic diagnostic server settings

Required methods

Gets the write timeout for sending messages to the servers channel

Gets the read timeout for reading response messages from the servers channel

Implementors