/
germanubis
/
sqlx
Обзор
Документация
Войти
/
germanubis
/
sqlx
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
clippy.toml
13 строк
427 B
Austin Bonander
fix: clippy warnings
13 июн 2024, 23:11
13 июн 2024, 23:11
bae083c
Код
Авторство
О чём код?
[[disallowed-methods]] path = "core::cmp::Ord::min" reason = ''' too easy to misread `x.min(y)` as "let the minimum value of `x` be `y`" when it actually means the exact opposite; use `std::cmp::min` instead. ''' [[disallowed-methods]] path = "core::cmp::Ord::max" reason = ''' too easy to misread `x.max(y)` as "let the maximum value of `x` be `y`" when it actually means the exact opposite; use `std::cmp::max` instead. '''