@@ -529,6 +529,7 @@ pub struct ClientOptions {
529
529
pub default_database : Option < String > ,
530
530
531
531
#[ builder( default , setter( skip) ) ]
532
+ #[ derivative( Debug = "ignore" ) ]
532
533
pub ( crate ) socket_timeout : Option < Duration > ,
533
534
534
535
/// The TLS configuration for the Client to use in its connections with the server.
@@ -545,9 +546,11 @@ pub struct ClientOptions {
545
546
/// Information from the SRV URI that generated these client options, if applicable.
546
547
#[ builder( default , setter( skip) ) ]
547
548
#[ serde( skip) ]
549
+ #[ derivative( Debug = "ignore" ) ]
548
550
pub ( crate ) original_srv_info : Option < OriginalSrvInfo > ,
549
551
550
552
#[ builder( default , setter( skip) ) ]
553
+ #[ derivative( Debug = "ignore" ) ]
551
554
pub ( crate ) original_uri : Option < String > ,
552
555
553
556
/// Configuration of the trust-dns resolver used for SRV and TXT lookups.
@@ -557,6 +560,7 @@ pub struct ClientOptions {
557
560
/// configuration, so a custom configuration is recommended.
558
561
#[ builder( default , setter( skip) ) ]
559
562
#[ serde( skip) ]
563
+ #[ derivative( Debug = "ignore" ) ]
560
564
pub ( crate ) resolver_config : Option < ResolverConfig > ,
561
565
562
566
/// Control test behavior of the client.
0 commit comments