We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1b656d commit 2af8351Copy full SHA for 2af8351
src/client.rs
@@ -19,7 +19,7 @@ use crate::{
19
/// The top-level struct of the SDK, representing a client containing [indexes](../indexes/struct.Index.html).
20
#[derive(Debug, Clone)]
21
pub struct Client<Http: HttpClient = DefaultHttpClient> {
22
- pub(crate) inner:std::sync::Arc<ClientInner<Http>>
+ pub(crate) inner: std::sync::Arc<ClientInner<Http>>,
23
}
24
25
#[derive(Debug)]
@@ -69,7 +69,7 @@ impl Client {
69
host: host.into(),
70
api_key,
71
http_client,
72
- })
+ }),
73
})
74
75
@@ -86,7 +86,7 @@ impl<Http: HttpClient> Client<Http> {
86
87
api_key: api_key.map(|key| key.into()),
88
89
90
91
92
0 commit comments