Quentin Santos

Results 46 comments of Quentin Santos

To anyone wondering, this is because the `parameters_in` default to `path`, where all fields are always required. This fixes the issue I had: ```diff diff --git a/src/main.rs b/src/main.rs index aa9ff69..b391236...

Since Refined Hacker News looks like it is unmaintained, I am taking the liberty of linking to my own extension: [ViHN](https://github.com/qsantos/ViHN/), in case it can be useful to some people...

I have encountered the same issue as @dpc. To give some explanation as to why it is non-trivial to solve this: When the `with-axum` feature is set, the `Template` derive...

I have encountered the same issue, as well as similar ones, for which I was able to extract minimal working examples. I have the feeling that Tarpaulin just get very...

Note we can just use `'a` instead of `T`: ```rust struct S1 { v: Option, } fn f1() { Box::new(S2 { u: 0, }); } #[test] fn test2() { f2();...

Here is another MWE with `--engine llvm` (the `0;` is also marked as not covered without `--engine llvm`): ```rust fn f

For reference, the PR that the preceding comment refers to is #340, which is associated with issue #339. The “main metaphor” has been completely removed, preferring a more focused conversation...

The chapter has been fully rewritten by https://github.com/rust-lang/nomicon/pull/340 following the remarks in https://github.com/rust-lang/nomicon/issues/339. There is no more reference to “Cat extends Animal”, which might sound intuitive, but could lead to...

Related: https://github.com/launchbadge/sqlx/issues/2661

@lemmih I have tested this PR, and it solves exactly a limitation I have encountered with Criterion. I am not familiar with Criterion's code base, but the changes look reasonable...