usebytesize::ByteSize;usestd::time::Duration;#[derive(Debug, Clone)]pubstructConfig{/// The maximum size of the payload part of a toku frame.
pubmax_payload_size: ByteSize,
/// The duration of time from when a client makes a request to when we stop waiting for a response
/// from the server.
pubrequest_timeout: Duration,
/// The duration of time from when a client starts a connect to when we stop trying to handshake.
pubhandshake_timeout: Duration,
/// Supported encodings.
pubsupported_encodings:&'static [&'staticstr],
}