mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-06-15 12:31:35 +02:00
Rename the error code about ranking score threshold
This commit is contained in:
parent
7c1b15fd06
commit
32207f9f19
@ -1971,7 +1971,7 @@ pub struct SearchParameters {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, Clone, Copy, Default, Deserialize, Serialize, PartialEq, Deserr, ToSchema)]
|
#[derive(Debug, Clone, Copy, Default, Deserialize, Serialize, PartialEq, Deserr, ToSchema)]
|
||||||
#[deserr(try_from(f64) = TryFrom::try_from -> InvalidSearchRankingScoreThreshold)]
|
#[deserr(try_from(f64) = TryFrom::try_from -> InvalidSettingsRankingScoreThreshold)]
|
||||||
pub struct RankingScoreThreshold(f64);
|
pub struct RankingScoreThreshold(f64);
|
||||||
|
|
||||||
impl RankingScoreThreshold {
|
impl RankingScoreThreshold {
|
||||||
@ -1981,11 +1981,11 @@ impl RankingScoreThreshold {
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl TryFrom<f64> for RankingScoreThreshold {
|
impl TryFrom<f64> for RankingScoreThreshold {
|
||||||
type Error = InvalidSearchRankingScoreThreshold;
|
type Error = InvalidSettingsRankingScoreThreshold;
|
||||||
|
|
||||||
fn try_from(value: f64) -> StdResult<Self, Self::Error> {
|
fn try_from(value: f64) -> StdResult<Self, Self::Error> {
|
||||||
if !(0.0..=1.0).contains(&value) {
|
if !(0.0..=1.0).contains(&value) {
|
||||||
Err(InvalidSearchRankingScoreThreshold)
|
Err(InvalidSettingsRankingScoreThreshold)
|
||||||
} else {
|
} else {
|
||||||
Ok(RankingScoreThreshold(value))
|
Ok(RankingScoreThreshold(value))
|
||||||
}
|
}
|
||||||
@ -1993,11 +1993,11 @@ impl TryFrom<f64> for RankingScoreThreshold {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct InvalidSearchRankingScoreThreshold;
|
pub struct InvalidSettingsRankingScoreThreshold;
|
||||||
|
|
||||||
impl Error for InvalidSearchRankingScoreThreshold {}
|
impl Error for InvalidSettingsRankingScoreThreshold {}
|
||||||
|
|
||||||
impl fmt::Display for InvalidSearchRankingScoreThreshold {
|
impl fmt::Display for InvalidSettingsRankingScoreThreshold {
|
||||||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||||
write!(
|
write!(
|
||||||
f,
|
f,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user