docs: some minor doc-comments in client::builder

This commit is contained in:
DarkCat09 2024-08-08 16:32:08 +04:00
parent 37196caf75
commit b150a71cc5
Signed by: DarkCat09
GPG key ID: 0A26CD5B3345D6E3

View file

@ -1,3 +1,5 @@
//! Builder for Client
use std::sync::Arc;
use crate::{
@ -12,6 +14,7 @@ use tokio_rustls::rustls::{
SupportedProtocolVersion,
};
/// Builder for creating configured [`Client`] instance
pub struct ClientBuilder {
root_certs: rustls::RootCertStore,
ss_verifier: Option<Box<dyn SelfsignedCertVerifier>>,