k2v-client: implement Debug for K2vClient

This commit is contained in:
Armaël Guéneau
2026-06-02 15:17:56 +02:00
committed by Alex
parent e665a3432c
commit d588a96125
+2 -2
View File
@@ -46,7 +46,7 @@ const PATH_ENCODE_SET: AsciiSet = NON_ALPHANUMERIC
.remove(b'.')
.remove(b'~');
#[derive(Clone)]
#[derive(Debug, Clone)]
pub struct K2vClientConfig {
pub endpoint: String,
pub region: String,
@@ -57,7 +57,7 @@ pub struct K2vClientConfig {
}
/// Client used to query a K2V server.
#[derive(Clone)]
#[derive(Debug, Clone)]
pub struct K2vClient {
config: K2vClientConfig,
user_agent: HeaderValue,