Skip to content
Snippets Groups Projects

Resolve "Update dependencies and fix lints"

Merged Maaz Ahmed requested to merge 49-update-dependencies-and-fix-lints into main
4 files
+ 794
428
Compare changes
  • Side-by-side
  • Inline
Files
4
@@ -34,7 +34,7 @@ impl<'a, F: Fn(&mut fmt::Formatter) -> fmt::Result> AggrFunc<'a, F> {
}
}
impl<'a, F: Fn(&mut fmt::Formatter) -> fmt::Result> From<QryFunc<F>> for AggrFunc<'a, F> {
impl<F: Fn(&mut fmt::Formatter) -> fmt::Result> From<QryFunc<F>> for AggrFunc<'_, F> {
fn from(value: QryFunc<F>) -> Self {
AggrFunc {
inner: value,
@@ -133,7 +133,7 @@ pub fn count<'a>(
pub fn count_values<'a>(
label: &'a str,
vec_expr: impl Operable + 'a,
) -> AggrFunc<'_, impl Fn(&mut fmt::Formatter) -> fmt::Result + '_> {
) -> AggrFunc<'a, impl Fn(&mut fmt::Formatter) -> fmt::Result + 'a> {
qry_fn!(count_values, r#""{label}", {vec_expr}"#).into()
}
Loading