From f4f86a6f3db66ed961e80494c5ab23b0ffa95c24 Mon Sep 17 00:00:00 2001 From: Anatoly Ikorsky Date: Wed, 16 Feb 2022 19:02:42 +0300 Subject: [PATCH] Mention tcp_user_timeout_ms in the docs --- README.md | 2 ++ src/lib.rs | 2 ++ 2 files changed, 4 insertions(+) diff --git a/README.md b/README.md index e4f2ef5..6c80995 100644 --- a/README.md +++ b/README.md @@ -170,6 +170,8 @@ structure in the create API docs): of the `tcp_keepalive_time` field in the `Opts` structure; * `tcp_connect_timeout_ms: u64` - defines the value (in milliseconds) of the `tcp_connect_timeout` field in the `Opts` structure; +* `tcp_user_timeout_ms` - defines the value (in milliseconds) + of the `tcp_user_timeout` field in the `Opts` structure; * `stmt_cache_size: u32` - defines the value of the same field in the `Opts` structure; * `compress` - defines the value of the same field in the `Opts` structure. Supported value are: diff --git a/src/lib.rs b/src/lib.rs index d4ce8d1..7d38359 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -177,6 +177,8 @@ //! of the `tcp_keepalive_time` field in the `Opts` structure; //! * `tcp_connect_timeout_ms: u64` - defines the value (in milliseconds) //! of the `tcp_connect_timeout` field in the `Opts` structure; +//! * `tcp_user_timeout_ms` - defines the value (in milliseconds) +//! of the `tcp_user_timeout` field in the `Opts` structure; //! * `stmt_cache_size: u32` - defines the value of the same field in the `Opts` structure; //! * `compress` - defines the value of the same field in the `Opts` structure. //! Supported value are: