mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-22 21:04:27 +01:00
chore: Use Default derive on Config struct
This commit is contained in:
parent
13309511b3
commit
9437cecf87
@ -16,7 +16,7 @@ pub struct AccessToken {
|
||||
}
|
||||
|
||||
|
||||
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
|
||||
#[derive(Default, Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
|
||||
pub struct Config {
|
||||
pub stop_words: Option<HashSet<String>>,
|
||||
pub ranking_order: Option<Vec<String>>,
|
||||
@ -26,16 +26,6 @@ pub struct Config {
|
||||
}
|
||||
|
||||
impl Config {
|
||||
pub(crate) fn default() -> Config {
|
||||
Config {
|
||||
stop_words: None,
|
||||
ranking_order: None,
|
||||
distinct_field: None,
|
||||
ranking_rules: None,
|
||||
access_token: None,
|
||||
}
|
||||
}
|
||||
|
||||
pub fn update_with(&mut self, new: Config) {
|
||||
if let Some(stop_words) = new.stop_words {
|
||||
self.stop_words = Some(stop_words);
|
||||
|
Loading…
Reference in New Issue
Block a user