cargo fmt

This commit is contained in:
qdequele 2020-02-26 18:49:17 +01:00
parent f182afc50b
commit dda08d60d2
No known key found for this signature in database
GPG key ID: B3F0A000EBF11745
14 changed files with 77 additions and 67 deletions

View file

@ -52,7 +52,6 @@ impl FieldsMap {
}
}
#[cfg(test)]
mod tests {
use super::*;

View file

@ -190,7 +190,7 @@ impl Schema {
Ok(())
}
pub fn set_all_fields_indexed(&mut self) {
pub fn set_all_fields_as_indexed(&mut self) {
self.indexed.clear();
self.indexed_map.clear();
@ -201,7 +201,7 @@ impl Schema {
}
}
pub fn set_all_fields_displayed(&mut self) {
pub fn set_all_fields_as_displayed(&mut self) {
self.displayed.clear();
for (_name, id) in self.fields_map.iter() {