We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4431176 commit 93b8c7eCopy full SHA for 93b8c7e
components/merino/src/curated_recommendations/mod.rs
@@ -27,17 +27,12 @@ struct CuratedRecommendationsClientInner<T: http::HttpClientTrait> {
27
http_client: T,
28
}
29
30
+#[derive(Default)]
31
pub struct CuratedRecommendationsClientBuilder {
32
base_host: Option<String>,
33
user_agent_header: Option<String>,
34
35
-impl Default for CuratedRecommendationsClientBuilder {
36
- fn default() -> Self {
37
- Self::new()
38
- }
39
-}
40
-
41
impl CuratedRecommendationsClientBuilder {
42
pub fn new() -> Self {
43
Self {
0 commit comments