mirror of
				https://github.com/meilisearch/meilisearch.git
				synced 2025-10-31 07:56:28 +00:00 
			
		
		
		
	impl Display for v2::settings::Criterion
This commit is contained in:
		| @@ -1,4 +1,5 @@ | ||||
| use std::collections::{BTreeMap, BTreeSet}; | ||||
| use std::fmt::Display; | ||||
| use std::marker::PhantomData; | ||||
| use std::str::FromStr; | ||||
|  | ||||
| @@ -174,3 +175,17 @@ impl FromStr for Criterion { | ||||
|         } | ||||
|     } | ||||
| } | ||||
|  | ||||
| impl Display for Criterion { | ||||
|     fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { | ||||
|         match self { | ||||
|             Criterion::Words => write!(f, "words"), | ||||
|             Criterion::Typo => write!(f, "typo"), | ||||
|             Criterion::Proximity => write!(f, "proximity"), | ||||
|             Criterion::Attribute => write!(f, "attribute"), | ||||
|             Criterion::Exactness => write!(f, "exactness"), | ||||
|             Criterion::Asc(field_name) => write!(f, "asc({})", field_name), | ||||
|             Criterion::Desc(field_name) => write!(f, "desc({})", field_name), | ||||
|         } | ||||
|     } | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user