@@ -529,6 +529,7 @@ pub struct ClientOptions {
529529 pub default_database : Option < String > ,
530530
531531 #[ builder( default , setter( skip) ) ]
532+ #[ derivative( Debug = "ignore" ) ]
532533 pub ( crate ) socket_timeout : Option < Duration > ,
533534
534535 /// The TLS configuration for the Client to use in its connections with the server.
@@ -545,9 +546,11 @@ pub struct ClientOptions {
545546 /// Information from the SRV URI that generated these client options, if applicable.
546547 #[ builder( default , setter( skip) ) ]
547548 #[ serde( skip) ]
549+ #[ derivative( Debug = "ignore" ) ]
548550 pub ( crate ) original_srv_info : Option < OriginalSrvInfo > ,
549551
550552 #[ builder( default , setter( skip) ) ]
553+ #[ derivative( Debug = "ignore" ) ]
551554 pub ( crate ) original_uri : Option < String > ,
552555
553556 /// Configuration of the trust-dns resolver used for SRV and TXT lookups.
@@ -557,6 +560,7 @@ pub struct ClientOptions {
557560 /// configuration, so a custom configuration is recommended.
558561 #[ builder( default , setter( skip) ) ]
559562 #[ serde( skip) ]
563+ #[ derivative( Debug = "ignore" ) ]
560564 pub ( crate ) resolver_config : Option < ResolverConfig > ,
561565
562566 /// Control test behavior of the client.
0 commit comments